Files
freeCodeCamp/guide/chinese/css/selectors/pseudo/link/index.md
2018-10-16 21:32:40 +05:30

432 B
Raw Blame History

title, localeTitle
title localeTitle
Link 链接

链接

:link CSS伪类用于定位具有href属性的所有未访问元素(例如,锚<a>元素),即使href具有空值。

一般语法:

target:link 

/* Selects any <a> that has not been visited yet */ 
 a:link { 
    color: red; 
 } 

更多信息: