There are times where you need to reset a an element’s styles. Instead of overwriting it with even more style declarations, you can simply reset them. /* Styles go here */ body { color: #d200ff; } button { color: white; font-size: 14px; background: l…
http://meyerweb.com/eric/tools/css/reset/ The goal of a reset stylesheet is to reduce browser inconsistencies in things like default line heights, margins and font sizes of headings, and so on. The general reasoning behind this was discussed in a May…