Underscore between two image-links

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

I have the following HTML code inside a div:


\"Image

        
6条回答
  •  滥情空心
    2021-02-12 00:16

    Removing text-decoration for those a tags is enough - no need to reduce readability of your markup by removing newlines and indents.

    But remember to remove that style for hover too:

    a, a:hover
    {
        text-decoration: none;
    }
    

提交回复
热议问题