Posted by Paul Watt on 04/11/06 16:32
"None" <kentor@gmail.com> wrote in message
news:1144759602.766606.22520@v46g2000cwv.googlegroups.com...
>i get: Line 22 column 14: there is no attribute "width".
> <td width="18%" align="right">
> when i try to validate my page on w3c... but i can't figure out a way
> to replace the width attribute. Can someone suggest something? I need
> to keep the width to 18% of the table so that the information on the
> left column doesn't jump on the next line in every td if its less than
> 18%...
> thanx
>
You could use CSS
in your style sheet;
..anything{
width:18%;
}
in your HTML
<TD class="anything">
HTH
Paul
[Back to original message]
|