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