VSudowoodo / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

Simplify the CSS for the font-weight property. #5

Open josephtkim opened 7 years ago

josephtkim commented 7 years ago

Great job simplifying the CSS code for the font-family property. You can simplify it further for the font-weight property as well.

h1, h2, .price {
  font-weight: bold;
}
VSudowoodo commented 7 years ago

Initially I was thinking that the multiple font-weight properties were fine as opposed to adding another CSS rule, but I now realize that this is the better option for simplicity. Thank you for pointing this out.