linting-html-with-css
linting-html-with-css copied to clipboard
Demo of Ire Aderinokun's https://bitsofco.de/linting-html-using-css/
- Ire Aderinokun's concept: https://bitsofco.de/linting-html-using-css/
- Demo page: https://chriscoyier.github.io/linting-html-with-css/
Bookmarklet
javascript:(function() {
var link = document.createElement("link");
link.rel = "stylesheet";
link.href = "https://cdn.jsdelivr.net/gh/chriscoyier/linting-html-with-css/lint.css";
document.getElementsByTagName("head")[0].appendChild(link);
})();
Ideas:
- ✅ Bookmarklet to inject CSS (done by Paul Esch-Laurent!)
- ✅ Browser extension to inject the CSS (Done by Ire herself! https://github.com/ireade/alix)