Corrected a typo in CSS section (#13)

This commit is contained in:
W Hassan 2018-02-13 00:34:57 -05:00 committed by Yangshun Tay
parent efd7afdc10
commit 194f74713d
1 changed files with 1 additions and 1 deletions

View File

@ -304,7 +304,7 @@ I would write CSS rules with low specificity so that they can be easily overridd
* **Resetting** - Resetting is meant to strip all default browser styling on elements. For e.g. `margin`s, `padding`s, `font-size`s of all elements are reset to be the same. You will have to redeclare styling for common typographic elements.
* **Normalizing** - Normalizing preserves useful default styles rather than "unstyling" everything. It also corrects bugs for common browser dependencies.
I would choose resetting when I have very a customized or unconventional site design such that I need to do a lot of my own styling do not need any default styling to be preserved.
I would choose resetting when I have a very customized or unconventional site design such that I need to do a lot of my own styling and do not need any default styling to be preserved.
###### References