erikanso / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

Css bundling selectors #3

Open Emik234 opened 7 years ago

Emik234 commented 7 years ago

A better way to go about adding font family Helvetica along with a backup font is to grab multiple selectors and bundle them with the font family property. This eliminates having to input the same property across multiple selectors. Ex:

h1, h2, h3, p {
  font-family: "Helvetica", sans-serif;
} 
erikanso commented 7 years ago

Is that more standard than using the asterisk "*" selector?