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

前端 未结 9 821
离开以前
离开以前 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:30

    This might work

    a img {position:relative; top: Npx}, where N is the hover border thickness
    

    This would make the image cover the border, although it would be displaced downwards a pixel or so permanently.

提交回复
热议问题