Bob Meetin wrote:
> Neal, David,
>
> Yes - the bug - just had to be a bug.  This one.  I added an if_ie 
> statement and it is now workable for both IE and FF. 
>
> Thanks to both of you, Bob
>
>
> ~davidLaakso wrote:
>   
>> Bob Meetin wrote:
>>   
>>     
>>> See:  www.dottedi.biz/testpage.html
>>>
>>> The page and CSS are self-contained.  Looks fine in Firefox, but in IE, 
>>> the upper divs are pushed over several pixels exposing the background 
>>> color.  The CSS for these 3 ID's has height set.
>>>
>>> -Bob
>>>   
>>>     
>>>       
>> Try:
>> * html  #left_column { margin-right: -3px; }
>> IE bug (3px jog)? See: 
>> <http://www.positioniseverything.net/explorer/threepxtest.html>
>> Regards,
>> ~dL 
>>     
>
>   
You are targeting all versions of win/ie now. You only want to target 
ie/6 and down. Try a "if less than IE 7" conditional comment, like so:

<!--[if lt IE 7]>
<style>
 /* style for IE 6 + IE5.5 + IE5.0 */
 #foo { color: red; }
</style>
<![endif]-->

Best,
~dL




-- 
http://chelseacreekstudio.com/

______________________________________________________________________
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