Lego2012
11/23/2016 - 7:46 AM

Declare styles through HTML Element

Declare styles through HTML Element

/* 
Instead of writing out classes for each font style, we can just apply any we want to the html element in one declaration: 
*/

html {
  font-size: 125%;
  font-family: sans-serif;
  line-height: 1.5;
  color: #222;
}