How to change background-color on text links on hover but not image links

前端 未结 9 615
渐次进展
渐次进展 2020-12-17 00:35

I have a CSS rule like this:

a:hover { background-color: #fff; }

But this results in a bad-looking gap at the bottom on image links, and wh

9条回答
  •  清歌不尽
    2020-12-17 00:46

    I had the same problem. In my case I am using the image as background. I did the following and it resolved my problem:

    background-image: url(file:"use the same background image or color");
    

提交回复
热议问题