TerraNetwork - Edith Karnitsch wrote:

> The live page is (nb: live site): 
> http://www.expressrentacar.co.uk/express_car_hire_london.php 


> ...
> The div container already has position: relative; as I had an earlier
> problem with the peekaboo bug in IE6 (if I remember correctly content i.e.
> text disappeared at random).
> 
> The div container CSS is:
> 
> #about #note_content {
>       position: relative; /* IE peek-a-boo bug fix */
>       margin: 1.5em 10px 2em 10px;
>       padding: 10px 6px 4px 14px;
>       background: url(../images/background_note_blue2.gif) top left
> no-repeat;
> }
> 

Never position a container that contains more than thin air relatively 
without applying layout [1]

add
zoom:1

alternatively, if you are really sure that IE6 is not buggy this time

min-height:0

Anyway, I'd say you should use Conditional Comments in the Head section 
to serve these properties, including position:relative, to IE only.

<!--[if IE]><style>
#about #note_content { zoom: 1; position: relative; }
</style><![endif]-->



Ingo

[1]

-- 
http://www.satzansatz.de/css.html
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to