UNI Webtools: Resources for Web Developers
Removing the border at the top of tables
Drupal puts a border on the top of tables by default, via a style in the system.css. You can remove it by placing the following style in your theme's style sheet. It also has a bottom style in the system.css, but it doesn't show up on most sites. I've added the remove style anyway.
tbody {border-top: none;}
tbody th {border-bottom: none;}
