Freesteyelz |
05-09-2006 03:14 AM |
Yes, I saw that Infantrymen when I viewed it before she posted this thread. :)
Quote:
Originally Posted by Boofo
I've tried the nowrap there on my site and it still wraps. Wierd.
|
A different layout but same principle applies. Only one "nowrap" is required if the width of the column is defined; <div> tags and <td> tags render differently. The reason is that the use of Table tags were not originally designed for layouts. Though, people use it because it is easier to work with. I'm confident that using only CSS you can achieve everything that Table layouts can.
On IE and Firefox I did this:
Code:
<td class="smallfont" nowrap="nowrap"><label for="navbar_username">User Name</label></td>
And it worked for your site, Boofo. :) If it doesn't then slip in a width attribute.
Actually with CSS you can get the rendering of height, padding and spacing nearly identical with IE and Firefox. It depends on the technique applied.
|