Associate
- Joined
- 22 Jan 2008
- Posts
- 1,311
- Location
- King's Lynn, Norfolk
Hi, I'm using XHTML, using CSS to define the attributes of a table.
Here is my CSS for the table:
And here is the code I've used to use it:
I know the link to the style sheet works, as I have tested it with another class.
Anybody have a clue what's wrong with the code?
Here is my CSS for the table:
Code:
table.navigation
{
table-layout: automatic;
border-color: grey;
border-style: dashed;
border-width: thick;
}
And here is the code I've used to use it:
Code:
<table class="navigation">
<tr>
<td>
<a href="index.html"> Home </a>
</td>
</tr>
<tr>
<td>
<a href="processors/processorguide.html"> Processors </a>
</td>
</tr>
<tr>
<td>
<a href="processors/single-core.html"> Single-Core </a>
</td>
</tr>
</table>
I know the link to the style sheet works, as I have tested it with another class.
Anybody have a clue what's wrong with the code?