At 12:23 AM 6/3/2005, Scott Haneda wrote:
    �     Line: 5

Unknown pseudo-element or pseudo-class image

a:image { border-bottom: 0; }

There is my line 5, I remove it and I validate, I don't get it, whats wrong
with that?


Scott,

To my knowledge, :image is not a pseudo-element. See the W3C spec for a list of those:
http://www.w3.org/TR/CSS21/selector.html#pseudo-elements

What's the HTML corresponding to your CSS selector "a:image"?  I suspect this:

        <a href="..."><img src="..." /></a>
thus:
        a img {...}

or:

        <a class="image" ...>...</a>
thus:
        a.image {...}

Regards,
Paul

______________________________________________________________________
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