that worked, but im so lost with what im trying to do.
I want to basically turn this table, into divs, with a nice thin 1px border separating everything..... even this table is messed up, but its at least laid out how i want it to look.
Code:
#DLTable {
width : 593px;
height: auto;
}
#DLTable TR {
background-color : #c2ceda;
}
#DLTable TD {
list-style-type: none;
font-size : 10px;
color : #000000;
font-family : Ms Sans Serif, Times New Roman;
border: 1px solid #000000;
}
Code:
<table id="DLTable" cellspacing="0" cellpadding="0">
<tr>
<td height="60" rowspan="3">
</td>
<td height="20" width="17%">Name</td>
<td height="20" width="61%"> </td>
</tr>
<tr>
<td height="20" width="17%">Size</td>
<td height="20" width="61%"> </td>
</tr>
<tr>
<td height="20" width="17%">Download</td>
<td height="20" width="61%"> </td>
</tr>
<tr>
<td colspan="3" height="75"> </td>
</tr>
</table>
|