On 6/1/05, Matthew Velic <[EMAIL PROTECTED]> wrote:

[snip]

> #intro span {
>   text-indent: -5000;
> }
> 
> #intro h1, h2 {
>   left-indent: -5000px;
> }

These two invalid rules are your problem. The negative indent on your
span is missing a unit (I believe IE assumes pixels when a unit is
absent) and the h1 and h2 are using "left-indent", which is a
non-existent property (but IE may support it for some reason). Try
this:

#intro span, #intro h1, h2 { text-indent: -5000px; }

-- Craig
www.focalcurve.com
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to