On Tuesday, November 11, 2003, at 03:07 AM, Dave Page wrote:
> patches for the new code to get it up to xhtml strict if you like
> (though
> I have to wonder if we would have to use transitional - for example,
> iirc
> there is no nowrap in strict).
Your right: no nowrap in Strict. However, you can set nowrap to
elements using css, I believe.
<style type="text/css">
<!--
.nowrap { white-space:nowrap; }
-->
</style>
<table>
<tr><td>This cell should wrap normally.</td> <td class="nowrap">This
cell won't wrap (or warp, for that matter) no matter how much text you
put it it.</td></tr>
</table>
.nowrap works in <table>, <tr>, and <td> tags.