top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is mean by CSS Reset?

0 votes
199 views

What is CSS Reset?

A CSS Reset (or “Reset CSS”) is a short, often compressed (minified) set of CSS rules that resets the styling of all HTML elements to a consistent baseline. In case you didn't know, every browser has its own default 'user agent' stylesheet, that it uses to make unstyled websites appear more legible.

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. 

Example for Css Reset

/* CSS Reset */
#element { margin:0; padding:0; font-size:100%; line-height:1; }
 
...
/* #element rules: */
#element { margin:5px 0 10px; font-size:13px; line-height:1.5; }
 

Video for CSS Reset

posted Jul 17, 2015 by anonymous

  Promote This Article
Facebook Share Button Twitter Share Button LinkedIn Share Button

...