CSS RESET
A CSS Reset is a set of rules or a short, often compressed(minified) set of CSS rules that resets the styling of all HTML elements to a consistent baseline.
Why use a CSS Reset?
All browsers have presentation defaults, but no two browsers have the same defaults.
From the consistent base that you’ve set up via your reset, you can re-style your document, safe in the knowledge that the browser’s differences in their default rendering of HTML will not affect what you are doing. It’s like starting from a fresh, clean slate.
syntax:
This is universal selector reset:
* {
margin: 0;
padding: 0;
box-sizzing: border-box;
border: 0;
vertical-align:baseline;
background: transparent;
font-size: 100%;
}
Support:
for any queries, contact: vikashanand04@gmail.com