reset CSS template


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

by Chris Coyier


Copy this code and paste it in your HTML
  1. /*
  2.   AUTHOR: YOUR NAME HERE
  3.   you@domain.com
  4. */
  5.  
  6. /* ------------------------------------------ */
  7. /* RESETS, BASIC PAGE SETUP, BASIC TYPOGRAPHY */
  8. /* ------------------------------------------ */
  9. * { margin: 0; padding: 0; }
  10. html { overflow-y: scroll; }
  11. body { font: 62.5% Helvetica, sans-serif; }
  12. ul { list-style: none inside; }
  13. p { font: 1.3em/1.3em; margin-bottom: 1.3em; }
  14. a { outline: none; }
  15. a img { border: none; }
  16. /* END RESET */
  17.  
  18. /* ------------------------------------------ */
  19. /* TOOLBOX CSS */
  20. /* ------------------------------------------ */
  21. .floatleft { float: left; }
  22. .floatright { float: right; }
  23. .clear { clear: both; }
  24. /* END TOOLBOX */
  25.  
  26. /* ------------------------------------------ */
  27. /* PAGE STRUCTURE */
  28. /* ------------------------------------------ */
  29. #page-wrap {
  30. width: 775px;
  31. margin: 0 auto;
  32. }
  33. /* END STRUCTURE */

URL: URL: http://tutorialblog.org/designers-toolbox-blank-css-template/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.