PDA

Click to See Complete Forum and Search --> : Borders on Cells


richy
Jun 18th, 2001, 08:21 AM
How can I put a border around certain cells rather than the whole table. Is there a way either in Style Sheets or pure HTML?

Wynd
Jun 18th, 2001, 11:35 AM
<style>
td.a {
border: 2px solid black;
}
</style>

<table border="0">
<tr>
<td>no border</td>
<td class="a">border</td>
</tr>
</table>

sail3005
Jun 18th, 2001, 01:27 PM
or you can use nested tables...