Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chriscoyier/linting-html-with-css

Demo of Ire Aderinokun's https://bitsofco.de/linting-html-using-css/
https://github.com/chriscoyier/linting-html-with-css

Last synced: about 2 months ago
JSON representation

Demo of Ire Aderinokun's https://bitsofco.de/linting-html-using-css/

Awesome Lists containing this project

README

        

- Ire Aderinokun's concept: https://bitsofco.de/linting-html-using-css/
- Demo page: https://chriscoyier.github.io/linting-html-with-css/

### Bookmarklet

```js
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)