Underscore between two image-links

后端 未结 6 669
一向
一向 2021-02-11 23:49

I have the following HTML code inside a div:


\"Image

        
6条回答
  •  一生所求
    2021-02-12 00:09

    You can either remove the text decoration by using the following css

    a
    {
    text-decoration: none;
    }
    

    or you can remove the white space between the image and the anchor tags.

    Both will fix the issue

提交回复
热议问题