关于流动模型的
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>流动模式下的内联元素</title>
<style type="text/css">
a:link{color:pink;}/*鼠标为点击时颜色*/
a:visited{color:#888;}/*鼠标点击链接后*/
a:hover{color:green;}/*鼠标移到链接上时*/
a:active{color:#ccc;}/*鼠标点击时*/
</style>
</head>
<body>
<a href="http://www.imooc.com">www.imooc.com</a><span>强调</span><em>重点</em>
<strong>强调</strong>
</body>
</html>
为什么链接我没点击而a:link的颜色不对呢