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

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

    This way works way better.

    a[href$=jpg], a[href$=jpeg], a[href$=jpe], a[href$=png], a[href$=gif] {
        text-decoration: none;
        border: 0 none;
        background-color: transparent;
        }
    

    No cumbersome classes that have to be applied to each image. Detailed description here:

    http://perishablepress.com/press/2008/10/14/css-remove-link-underlines-borders-linked-images/

提交回复
热议问题