a:link {/* 未访问的链接 */ color:red; } a:visited {/* 已访问的链接 */ color:red; } a:hover {/* 鼠标移动到链接上 */ color:red; } a:active {/* 选定的链接 */ color:red; } 在 CSS 定义中,a:hover 必须被置于 a:link 和 a:visited 之后,才是有效的。 在 CSS 定义中,a:active 必须被置于 a:hover 之后,才是有效的. a.other 是class="other"的a标签的效果
a.other:hover { color:red;} 这个表示的含义就是class="other"的a标签在鼠标划过时的效果
时间: 2024-12-22 09:10:13