PHP Classes

File: index.css

Recommend this page to a friend!
  Classes of Michele Andreoli   Easy Table Generator   index.css   Download  
File: index.css
Role: Auxiliary data
Content type: text/plain
Description: CSS
Class: Easy Table Generator
Display data from arrays in HTML tables
Author: By
Last change:
Date: 14 years ago
Size: 800 bytes
 

Contents

Class file image Download
/** * TABLE STYLE */ table#tableID { margin: auto; background-color: #EEEEEE; border-collapse: collapse; border: solid black 2px; width: 400px; } table#tableID td { padding: 5px; } table#tableID .zebraOn{ background-color: #DDDDDD; } table#tableID .zebraOff{ background-color: #CCCCCC; } /** * TABLE HEADER STYLE */ table#tableID .headClass { text-align: center; background-color: #999999; border: solid black 2px; font: bold 12px verdana; } /** * TABLE BODY STYLE */ table#tableID .bodyClass { font: normal 12px verdana; } table#tableID .bodyClass tr:hover { background-color: #DDFFAA; } /** * TABLE FOOTER STYLE */ table#tableID .footClass { text-align: center; background-color: #999999; border: solid black 2px; }