From: | Michael Glaesemann <grzm(at)myrealbox(dot)com> |
---|---|
To: | pgsql-www(at)postgresql(dot)org |
Subject: | Re: CSS and XHTML |
Date: | 2003-11-10 18:49:33 |
Message-ID: | A020EF54-13AE-11D8-A2E4-0005029FC1A7@myrealbox.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-www |
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.
From | Date | Subject | |
---|---|---|---|
Next Message | Marc G. Fournier | 2003-11-10 18:59:53 | Re: [HACKERS] Changes to Contributor List |
Previous Message | Josh Berkus | 2003-11-10 18:28:26 | Considerations on a Multi-Lingual Site |