Drop-in stylesheet that strips any webpage back to browser default appearance
Include the stylesheet in your HTML <head> tag:
<link rel="stylesheet" href="https://nocss.vercel.app/no.css">Click the button below to copy the bookmarklet code. Create a new bookmark in your browser and paste this code as the URL:
javascript:(function(){var l=document.createElement('link');l.rel='stylesheet';l.href='https://nocss.vercel.app/no.css';document.head.appendChild(l);})();Add the stylesheet dynamically using JavaScript:
const link = document.createElement('link');
link.rel = 'stylesheet';
link.href = 'https://nocss.vercel.app/no.css';
document.head.appendChild(link);For immutable caching, use the versioned URL:
<link rel="stylesheet" href="https://nocss.vercel.app/no.v1.min.css">Check out our interactive demo page to see how NoCSS transforms styled pages back to browser defaults.
Hand-written CSS that explicitly sets every property to browser-default values
Applies to all elements including pseudo-elements to ensure complete coverage
Served with immutable caching headers and CORS support for global use