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

前端 未结 9 594
渐次进展
渐次进展 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:52

    I usually do something like this to remove the gap under images:

    img {
      display: block;
      float: left;
    }
    

    Of course this is not always the ideal solution but it's fine in most situations.

提交回复
热议问题