On Oct 6, 2007, at 8:22 AM, Chris Davis wrote:

>
> On a newly developed site I recently got an email saying that the  
> content on one page of the site only took up 10% of the screen: far  
> too little to see! The page makes use of overflow:auto and the user  
> is browsing with Safari on a Mac. Can anyone else see the problem  
> and suggest fixes?
>
> The page is here: http://monna-vanna.com/cast/

Yes, that is a known bug in Safari 2.0.0.x, and fixed in Webkit  
nightly builds /Safari3beta.
it is cause by the overflow on the element (#cast), nested in a block  
with clear:both.

Fix: Use something like the easy clearing technique [1], or add a  
clearing element before #content:
#marquee {zoom:1} /* <!-- for iExploder */
#marquee::after {clear:both; content:'[.]'; display:block;  
visibility:hidden; height:0;}

#content {
  /* clear:both;*/ /* <!-- remove */
}

[1] <http://www.positioniseverything.net/easyclearing.html>

Philippe
---
Philippe Wittenbergh
<http://emps.l-c-n.com>




______________________________________________________________________
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/

Reply via email to