Switch to full style
HTML code examples
Post a reply

Table with colored background

Sat Feb 25, 2012 2:17 pm

This example presents using CSS properties to control the background and border colors of the table tag.

Code:
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">

<
head>
  <
title>Table with  colored background</title>
  <
style rel="stylesheet" type="text/css">
table {
  
background-color#CCEEBB;
  
width400px;
   
border2px dashed #CC3311;
   
font-familyarialverdanasans-serif;
}
table caption {
   
font-size0.8em;
}

</
style>
</
head>

<
body>
<
table>
  <
caption>Table with  colored background </caption>
  <
tr>
    <
th>Column 1 header</th>
    <
th>Column 2 header</th>
  </
tr>
  <
tr>
    <
td>Row 1 data1</td>
    <
td>Row 1 data2</td>
  </
tr>
  <
tr>
    <
td>Row 2 data1</td>
    <
td>Row 2 data2</td>
  </
tr>
  <
tr>
    <
td>Row 3 data1</td>
    <
td>Row 3 data2</td>
  </
tr>
  <
tr>
    <
td>Row 4 data1</td>
    <
td>Row 4 data2</td>
  </
tr>
</
table>

</
body>
</
html>

   
    
 




Post a reply
  Related Posts  to : Table with colored background
 Multi colored table rows     -  
 Table background image problem     -  
 Add background to body     -  
 background attachments     -  
 two Different background colors     -  
 X and Y background position     -  
 Background Extraction     -  
 Moving Background in flash     -  
 Background color - mile200     -  
 visual c++ MFC background threads     -  

Topic Tags

HTML Table