在網(wǎng)頁設(shè)計(jì)中,CSS的偽類可以對(duì)元素進(jìn)行一些特殊的選擇。這篇文章將介紹CSS中常用的偽類。
/* 選中未被訪問過的鏈接 */ a:link { color: blue; } /* 選中已訪問過的鏈接 */ a:visited { color: purple; } /* 選中鼠標(biāo)懸停在元素上的效果 */ a:hover { color: red; } /* 選中獲得焦點(diǎn)的元素 */ input:focus { background-color: yellow; } /* 選中元素的第一個(gè)子元素 */ div:first-child { color: green; } /* 選中元素的最后一個(gè)子元素 */ div:last-child { color: orange; }
以上是其中一些常用的CSS偽類。通過偽類的使用,可以為網(wǎng)頁增添不同的交互效果和視覺效果。