Bugzilla – Bug 636
Advice for border="0" doesn't work for IE6
Last modified: 2009-12-01 10:00:06 CET
"Warning: The border attribute is obsolete. Consider specifying a img, img[usemap] { border: 0; } in CSS instead." This ruleset will be dropped in IE6 because it doesn't support attribute selectors. The following is sufficient: img { border: 0; }
(In reply to comment #0) > "Warning: The border attribute is obsolete. Consider specifying a img, > img[usemap] { border: 0; } in CSS instead." > > This ruleset will be dropped in IE6 because it doesn't support attribute > selectors. > > The following is sufficient: > > img { border: 0; } syntax r503 http://whattf.browse.cvsdude.com/syntax?view=rev&revision=503 changed to what you suggested, but I wonder if we actually might want to go ahead and just change it to say, "Use CSS instead" with the hyperlink to the Wiki page you created.