CSS- target text links with bottom border on hover, but image links with no border

前端 未结 9 842
离开以前
离开以前 2021-02-08 11:54

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:



        
9条回答
  •  佛祖请我去吃肉
    2021-02-08 12:39

    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

提交回复
热议问题