Jim Witte wrote:
Look at this page:

http://www.cocoadev.com/index.pl?BetterArticleTextLayout .

It appears that the <code> block at the top of the page, being preformated text, pushes the <code> element width out to the right as far as it needs. But it doesn't just push out the width of the <code> element, it pushes out the width of the *entire* page, so that other parts of the page no longer respect the window width. This makes the rest of the page extremely difficult to read, unless people do their own line-wrapping (which, this being a Wiki, cannot be ensured)

The problem is that it is in a table. By default tables expand if they are too small. What you can try is using the overflow css command on the td tag.


overflow: auto;
overflow: scroll;
etc...
_______________________________________________
mozilla-layout mailing list
[EMAIL PROTECTED]
http://mail.mozilla.org/listinfo/mozilla-layout

Reply via email to