W3C home > Mailing lists > Public > www-validator@w3.org > April 2005

Re: The valid W3C XHTML 1.0 png

From: Lachlan Hunt <lachlan.hunt@lachy.id.au>
Date: Sat, 02 Apr 2005 17:17:27 +1000
Message-ID: <424E4707.9020907@lachy.id.au>
To: Eric Nitzsche <nitzsche@pacbell.net>
CC: www-validator@w3.org

Eric Nitzsche wrote:
> Add border="0" to the suggested image code.

The border attribute is deprecated, and it would not validate with a 
Strict DOCTYPE.  It is also completely unnecessary because CSS can quite 
easily achieve the same result

:link img { border: 0; }

> If you add border="0" and have an A:hover color in a document, that 
> color appears on the image under the right part of the check mark on a 
> mouseover.  At least it does with Firefox 1.0.2 on my Win2K box.
> 
> Here's an example from one of my pages: 
> http://home.pacbell.net/nitzsche/dirhtml/dirhtml.html

That is the correct behaviour with that style rule applied.  However, 
this is slightly more difficult to handle, as you need to select <a> 
elements that contain <img> which cannot be done directly with CSS.  You 
could add a class to the link like this:

<a href="..." class="image"><img ... ></a>

then style it using:

.image:link:hover { background-color: transparent; }

-- 
Lachlan Hunt
http://lachy.id.au/
http://GetFirefox.com/     Rediscover the Web
http://GetThunderbird.com/ Reclaim your Inbox
Received on Saturday, 2 April 2005 07:17:42 UTC

This archive was generated by hypermail 2.4.0 : Friday, 17 January 2020 22:58:50 UTC