How can I create a table that only has a border on the inside in between rows?
I've tried doing:
.CSS file:
body {
margin-top:0;
}
a {
text-decoration:none;
}
a:hover {
text-decoration:underline;
}
h1 {
}
.class1 a {
display:block;
background-color:#EEEEEE;
color:#336666;
}
.class1 a:hover {
background-color:#DDDDDD;
}
HTML:
<div class="class1">
<table align="left" border="2" bordercolor="#000000" frame="void" rules="rows">
<tr><td>
<a href="#">Link1</a>
<a href="#">Link2</a>
<a href="#">Link3</a>
</td>
</tr>
</table>
</div>
but this doesn't show up any borders. What am I missing?
I've tried doing:
.CSS file:
body {
margin-top:0;
}
a {
text-decoration:none;
}
a:hover {
text-decoration:underline;
}
h1 {
}
.class1 a {
display:block;
background-color:#EEEEEE;
color:#336666;
}
.class1 a:hover {
background-color:#DDDDDD;
}
HTML:
<div class="class1">
<table align="left" border="2" bordercolor="#000000" frame="void" rules="rows">
<tr><td>
<a href="#">Link1</a>
<a href="#">Link2</a>
<a href="#">Link3</a>
</td>
</tr>
</table>
</div>
but this doesn't show up any borders. What am I missing?