Sharon Go wrote: > I have content that overspills the browser's viewport in an RTL-based > table. In LTR, it seems to work fine, but with IE7, the moment the > content overspills, I get a big blank space on the left-hand side of > the table.
Looks like a nasty bug. Setting margins and things like that don't seem to fix it. > I tried to do a minimalist version of a table containing just a simple > tr/td with a very large picture. You can find it here: > > http://goxsha.googlepages.com/rtl-table-test.html Well, CSS has nothing to do with the _problem_, since the demo page does not have any CSS. But I guess you're asking whether CSS could be used to develop a _workaround. > In all honesty, I wouldn't want to truncate the content, since I > rather have a scrollbar than cut off content, especially since it's > tabular content. The same problem seems to arise with a data table with many columns. How about a workaround that removes the <html> scrollbars and sets scrollbars for <body>? html, body { overflow: auto; margin: 0; padding: 0; } This seems to avoid the problem on IE 7. Jukka K. Korpela ("Yucca") http://www.cs.tut.fi/~jkorpela/ ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
