From: "Sido van Gennip" <[EMAIL PROTECTED]>

http://www.paardenverzekeringvergelijker.nl/ 

> in IE6, the bottom
>of the page seems to be missing... 

In - /* reset.css */ - remove the position: relative from the universal 
selector's declarations. Automatically declaring that property value for 
everything can have unpredictable and, as you've discovered, undesirable, 
consequences. Set it only where needed.

/* reset.css */
*
{
        font-family: inherit;
        font-size: 100%;
        font-style: normal;
        font-weight: normal;
        line-height: 1.2em;
        margin: 0;
        padding: 0;
        position: relative; /* this is the offending property */
        text-align: left;
}

I hope that helps,

~holly

ps - the only "technique" used to discover the problem here is described on 
this page - 

http://www.positioniseverything.net/articles/mys-bug.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