Hyperlinks showing URL with Blueprint

后端 未结 1 960
滥情空心
滥情空心 2020-12-10 17:44

I just converted a site to Blueprint CSS today, and suddenly all my hyperlinks are showing their URL\'s in brackets, e.g.

This hyperlink



        
相关标签:
1条回答
  • 2020-12-10 18:14

    It's likely you have something like this in your CSS:

    a:link:after { content:" (" attr(href) ") "; }
    

    That will produce the behavior you describe.

    Typically, you would only use this kind of style for the print version of your stylesheet.

    0 讨论(0)
提交回复
热议问题