css link color styles best practice

前端 未结 5 768
遇见更好的自我
遇见更好的自我 2020-12-08 04:30

There are many css-samples for styling color of links.

html5boilerplate.com offers such css code for link:

a { color: #00e; }
a:visited { color: #551         


        
5条回答
  •  鱼传尺愫
    2020-12-08 05:00

    If you want to be sure that you are styling links (and not the anchors which are not links), you should use a:link instead of a.

    And you could add a:active at the end. Here you have a tutorial.

提交回复
热议问题