https://github.com/caiogondim/css-style-guide
https://github.com/caiogondim/css-style-guide
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/caiogondim/css-style-guide
- Owner: caiogondim
- Created: 2013-08-20T01:40:30.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-03-25T14:27:38.000Z (about 11 years ago)
- Last Synced: 2025-01-24T18:08:45.101Z (5 months ago)
- Size: 160 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CSS style guide
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Architecto cum
consequuntur explicabo distinctio laborum inventore qui deleniti. Natus,
molestiae ratione saepe sequi fugiat praesentium impedit libero tenetur. Nobis,
facere, aut!## Box sizing
Don't do crazy math with `width` and `padding` and **always** use `box-sizing: border-box;`;
```css
/* Good */
* {
box-sizing: border-box;
}
```## Reference
- [WTF, HTML and CSS?](http://mdo.github.io/wtf-html-css/)