Universal Reset


/ Published in: CSS
Save to your folder(s)

Universal Reset

This is my current favorite CSS reset. It handles all the essentials, and ensures relatively universal default browser-style uniformity.


Copy this code and paste it in your HTML
  1. * {
  2. vertical-align: baseline;
  3. font-weight: inherit;
  4. font-family: inherit;
  5. font-style: inherit;
  6. font-size: 100%;
  7. border: 0 none;
  8. outline: 0;
  9. padding: 0;
  10. margin: 0;
  11. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.