Skip to content

Instantly share code, notes, and snippets.

@saneef
Last active April 5, 2022 08:41
Show Gist options
  • Save saneef/5b145fe058f9d2131b84750b689be971 to your computer and use it in GitHub Desktop.
Save saneef/5b145fe058f9d2131b84750b689be971 to your computer and use it in GitHub Desktop.
Set max-width style of <p> and <li> tags to 60ch. Making long texts easier to read
const styles = `p,li {max-width: 60ch !important;}`;
const style = document.createElement("style");
document.head.appendChild(style);
style.appendChild(document.createTextNode(styles));
@saneef
Copy link
Author

saneef commented Apr 5, 2022

Copy above snippet and generate bookmark let at https://caiorss.github.io/bookmarklet-maker/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment