432 B
432 B
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;
}