I\'d like to be able to target text links in CSS with border-bottom on hover, but have all links that are images not have a border on hover. So:
Its possible with css3 using a:not(img) a:hover {style:whatever;} , but there are considerations. Here is an explanation with images: http://nerdinprogress.blogspot.com/2010/11/target-text-links-but-not-images-with.html
a:not(img) a:hover {style:whatever;}