1, a:link有些瀏覽器不支持,不推薦使用
2,這些樣式的順序不可以改變
a:focus
/* a:link{
color: red;
} */
a{
color: red;
text-decoration: none; /* 去掉超鏈接下橫線 */
}
/* 訪問過后的樣式 */
a:visited{
color: pink;
}
/* 鼠標(biāo)移動(dòng)上去的樣式 */
a:hover{
color: green;
/* text-decoration: underline; */ /* 顯示下橫線 */
/* text-decoration: line-through; */ /* 貫穿線 */
}
/* 激活狀態(tài)下的樣式 ,長按的時(shí)候會(huì)改變*/
a:active{
color: black;
}
</style>
</head>
<body>
<a href="#" >百度一下</a>
</body>