cssrecipes-defaults
Version:
Just a few handy default styles for your `<html>` pages
20 lines (19 loc) • 577 B
CSS
/*
* Some defaults are based on inherit
*
* Why inherit ?
* If you have a component and his children not using border-box for example:
*
* Without inherit you might need
* .Component, .Component * { box-sizing: content-box }
*
* With inherit you can just write
* .Component { box-sizing: content-box }
*
* http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
*/
@import "lib/background.css";
@import "lib/border-collapse.css";
@import "lib/box-sizing.css";
@import "lib/document-remove-margin-padding.css";
@import "lib/hidden.css";