see this type of css a[href^="http:"] { background: url(images/externalLink.gif) no-repeat right top; padding-right: 10px; } I.E. 6 cannot support but working Fire Fox..... how can i solve this.....problem.......????????
Use Javascript or a server side language. You cannot do this in CSS alone and keep cross browser compatibility. Or you can add a class/style to each external <a> link, I use class="extLink".
Use a class if you need to support that. Not only is it backwards (and cross-browser) compatible, but it'll also save you from having to write that kind of CSS anyway.