Chris Stratford wrote:
WHY doesn't my forum table Clip the large image? Where do I need the
overflow: hidden???

Doesn't work on a table. A table will expand by default, and no style can prevent that-- at least not in any browser I've tested in. The only solution that'll work for you, is something like this:

        <td class="post_content">
<div style="width: 490px; overflow: auto;">
                This Ultra Wide image SHOULD be truncated.<br />
<br />

<img src="users-bi.jpg" />
</div></td>
... a div in the table-cell, with width and overflow set on it.
IE6 will create scroll both ways, because it is unable to calculate in
its own scroll-bar height. Opera and Gecko will provide you with a
horizontal scroll-bar only.

regards
        Georg
--
http://www.gunlaug.no
******************************************************
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************



Reply via email to