Remove line under image in link

前端 未结 8 918
北恋
北恋 2020-12-17 15:10

I have a few instances where I place image within a link. Normally if you set border=\"0\" there line under a link does not apply to the image. However, I had to specify DOC

8条回答
  •  时光说笑
    2020-12-17 15:28

    If you are linking to an image, try the following:

    a[href$=jpg], a[href$=png] {
        text-decoration: none;
    }
    

提交回复
热议问题