Atom
07-03-2012, 04:45 PM
This is my CSS:
table.month{ border-width:3px; border-style: solid; border-collapse:collapse; border-color:#415065; background-color:#B6CEFF; cellpadding:2px; cellspacing:2px; width:600px;}
table.month th {
font-weight: bold;
border-width: 1px;
padding: 2px;
border-style: solid;
border-color: #000000;
}
table.month td {
border-width: 1px;
padding: 2px;
border-style: solid;
border-color: #000000;
I want the header row to be bold, and the cell text to be regular, but I am unable to find the way to make that happen.
This is first part of html:
<table class="month">
<th >
<td>Jan</td>
<td>Feb</td>
<td>Mar</td>
<td>Apr</td>
<td>May</td>
<td>Jun</td>
<td>Jul</td>
<td>Aug</td>
<td>Sep</td>
<td>Oct</td>
<td>Nov</td>
<td>Dec</td>
</th>
table.month{ border-width:3px; border-style: solid; border-collapse:collapse; border-color:#415065; background-color:#B6CEFF; cellpadding:2px; cellspacing:2px; width:600px;}
table.month th {
font-weight: bold;
border-width: 1px;
padding: 2px;
border-style: solid;
border-color: #000000;
}
table.month td {
border-width: 1px;
padding: 2px;
border-style: solid;
border-color: #000000;
I want the header row to be bold, and the cell text to be regular, but I am unable to find the way to make that happen.
This is first part of html:
<table class="month">
<th >
<td>Jan</td>
<td>Feb</td>
<td>Mar</td>
<td>Apr</td>
<td>May</td>
<td>Jun</td>
<td>Jul</td>
<td>Aug</td>
<td>Sep</td>
<td>Oct</td>
<td>Nov</td>
<td>Dec</td>
</th>