🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
| 选择器名称 | 说明 | | --- | --- | | :link | 未访问的连接 | | :visited | 已访问的连接 | | :hover | 鼠标移动到连接上 | | :active | 选定的连接 | 注意: * 顺序尽量不要颠倒 ``` <style> a:link{ color: green; font-size: 30px; } a:visited{ color: red; font-weight: bold; } a:hover{ color: blue;; font-size: 30px; } a:active{ color: pink;; font-size: 20px; } </style> <a href="./链接伪类选择器的使用.html" class="one" target="_blank">伪类选择器的使用1</a> ~~~ ```