@passmarked/css
Version:
Rules related to checking the compatability of the CSS on the page ensuring the stylesheet works on older browsers too
16 lines (10 loc) • 605 B
Markdown
Use of the `` directive allows for the composition of stylesheets using smaller and more reusable chunks of code. Unfortunately, the `` directive triggers an HTTP request for the resource when encountered by the CSS interpreter which can result in decreased overall site performance.
```css
'my-other-styles.css';
'my-print-styles.css' print;
'my-tv-styles' projection, tv;
```
# How do I fix this ?
Concatenate the contents of your stylesheets into one file and include that instead of multiple files.
# Resources
* [devdocs/css](http://devdocs.io/css/@import)