A simple question, I was wondering that in 2011 is this the right way to size html tables? (containing tabular data, of course!)
Should the following ways stay?
<tr> <th width="45%">Name</th> <th width="10%">Author</th> <th width="20%">Description</th> <th width="10%">Rating</th> <th width="15%">Download</th> </tr>
Or would it be better to give each column an โโidentifier (or class) and set its width using CSS?
Thanks for your input!
source share