Skip to content

Instantly share code, notes, and snippets.

@kuanyui
Last active February 9, 2021 07:16
Show Gist options
  • Save kuanyui/63310bb4a12910ec9bf717767b7d09fc to your computer and use it in GitHub Desktop.
Save kuanyui/63310bb4a12910ec9bf717767b7d09fc to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Full-Width CSS-Trick
// @version 0.1
// @grant none
// @match https://css-tricks.com/*
// @run-at document-end
// @grant none
// ==/UserScript==
const el = document.createElement('style')
el.innerText =`
html { --maxWidth: unset; }
p { max-width: unset !important; }
`
document.body.appendChild(el)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment