home *** CD-ROM | disk | FTP | other *** search
/ 207.233.110.77 / 207.233.110.77.tar / 207.233.110.77 / web08 / phase3 / tables.css < prev   
Cascading Style Sheet File  |  2011-03-03  |  711b  |  25 lines

  1. /*
  2.    New Perspectives on HTML and XHTML 5th Edition
  3.    Tutorial 5
  4.    Tutorial Case
  5.  
  6.    Tables Style Sheet
  7.    Author: Andrew Densmore
  8.    Date: 2/28/11  
  9.  
  10.    Filename:         tables.css
  11.    Supporting Files: 
  12.  
  13. */
  14. table.comp    {background-color:yellow; border: 1px solid blue; border-collapse: collapse;
  15.                 font-family: Arial, helvetica, sans-serif; font-size: 0.7em;
  16.                 width: 85%}
  17. table.comp th, table.comp td
  18.     {border: 1 px solid grey}
  19. table.comp thead    {color:white; background-color: rgb(203,50,203)}
  20.  
  21. table.comp thead tr {height: 20px}
  22. table.comp tbody tr {height: 30px}
  23.  
  24. table.comp tbody td {vertical-align:top; padding: 5px}
  25. table.comp caption {caption-side: top; text-align: right}