I have a table where I set the font-family to courier and a set style for a cell to display the time.
Table {
font-size: 12px;
font-family: courier;
}
.Time{font-size: x-small;
background-color:#e6e6e6;
text-align: center;
font-weight: bold
}
The problem is I need equal letter spacing on the web page so I used the courier font but the font size will not change when I assing the .time class to a <td>. If I change the font to arial or times, the font size does change.
Does anyone know a fix for this or a different font I could use.
Denis
Programmer Canada
Table {
font-size: 12px;
font-family: courier;
}
.Time{font-size: x-small;
background-color:#e6e6e6;
text-align: center;
font-weight: bold
}
The problem is I need equal letter spacing on the web page so I used the courier font but the font size will not change when I assing the .time class to a <td>. If I change the font to arial or times, the font size does change.
Does anyone know a fix for this or a different font I could use.
Denis
Programmer Canada