We Recommend

CSS: The Definitive Guide CSS: The Definitive Guide
Provides you with a comprehensive guide to CSS implementation, along with a thorough review of all aspects of CSS 2.1. Updated to cover Internet Explorer 7, Microsoft's vastly improved browser, this new edition includes content on positioning, text wrapping (nowrap), lists and generated content, table layout, user interface, paged media, and more.


Posted By

jonhenshaw on 01/23/08


Tagged

table grid


Versions (?)


Who likes this?

4 people have marked this snippet as a favorite

jonhenshaw
DFCNT
ctronci
stefo


Grid Style for HTML Table


Published in: CSS 


This is a CSS snippet I use a lot for the base style of a table. It provides cell padding and borders.


  1. table.grid { width:100%; }
  2. table.grid, table.grid th, table.grid td { border-collapse:collapse;border:1px solid #ccc; }
  3. table.grid th, table.grid td { padding:3px; }
  4. table.grid th { color:#fff;background:#666;font-weight:normal; }
  5. table.grid td { font-size:90%; }

Report this snippet 

You need to login to post a comment.