Global CSS Reset for Joomla


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

Custom css reset with elements added for Joomla! development - just includes the .contentpaneopen and .contentheading on top of standard CSS. You may need to add border:none; depending on project - YMMV.


Copy this code and paste it in your HTML
  1. /* This is the global reset to allow fresh styling for each build.
  2. -----------------------------------------------------------------------------*/
  3. html, body, div, span, applet, object, iframe,
  4. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  5. a, abbr, acronym, address, big, cite, code,
  6. del, dfn, em, font, img, ins, kbd, q, s, samp,
  7. small, strike, strong, sub, sup, tt, var,
  8. b, u, i, center,
  9. dl, dt, dd, ol, ul, li,
  10. fieldset, form, label, legend,
  11. table, caption, tbody, tfoot, thead, tr, th, td,
  12. .contentpaneopen, .contentheading {
  13. margin: 0;
  14. padding: 0;
  15. border: 0;
  16. outline: 0;
  17. font-size: 100%;
  18. outline:none;
  19. line-height:normal;
  20. vertical-align:top;
  21. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.