sainture
4/24/2016 - 7:07 AM

Universal selector

Universal selector

* {
  margin:0;
  font-family: Georgia, serif;
}

/*Universal selector lets you define styles at the top level and all page elements will inherit 
these styles unless specifically overridden

It is common to set the default margin & padding in the Universal selector to 0, to avoid default spacings
*/

* {
  margin:0;
  padding:0;
}