企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
| 选择器名称 | 说明 | | --- | --- | | :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> ~~~ ```