Primary CSS unit
- Font sizing with rem (root em) http://snook.ca/archives/html_[...]s/font-size-with-rem[link1]
- https://mindtheshift.wordpress[...]css-reference-pixel/[link2]
Colors
Use of pseudo classes
Examples.article aside li:first-child { border-top: 0 none; margin-top: 0; padding-top: 0; } .article aside li { border-top: 1px solid #eee; line-height: 16px; margin-top: 0; padding: 6px 0 6px 80px; position: relative; }
force line break
overflow-wrap: break-word;
table { table-layout: fixed; width: 100%; } table td { overflow-wrap: break-word; }
[link2]https://mindtheshift.wordpress.com/2015/04/02/r-i-p-rem-viva-css-reference-pixel/