I don't really know where this belongs to, but I figured this is the area with the most similarities. Maybe open an explicit website-design section?
Anyways:
How reliable are percentage-amounts in td-width specifications?
What I basicly need to know is: do all browsers support percentage-widths in a td-element and how accurate are they displayed? I mean, do any browsers add additional values to suit their display-system?
I want to create bar-like images without the use of gdLibrary and I figured I'd try it by using different colored td-elements
<table width="100%" class="bg" cellpadding="1">
<tr>
<td class="bright" width="85%">85%</td>
<td class="dark" width="15%"></td>
</tr>
</table>