我們可以使用CSS 偽類別為HTML 中的現有元素新增特定樣式,這些偽類別選擇具有特定狀態的元素,例如(懸停、存取、停用等)
注意 strong> - 為了將CSS 偽類與偽元素分開,在CSS3 中,偽類使用單冒號表示法。
以下是在元素上使用CSS 偽類別的語法-
Selector:pseudo-class { css-property: /*value*/; }
以下是所有可用的CSS 偽類別-
Sr.No | 偽類別與描述 |
---|---|
1 | 活動 它選擇活動提到的元素 |
#2 |
已檢查 #它選擇每個已檢查提到的元素 |
##停用它選擇每個禁用提到的元素
td> |
|
4 | |
#它選擇每個提到的元素沒有子級 | 5 |
它選擇每個啟用的提到的元素 |
6
|
它選擇作為其父級的第一個子級的每個提到的元素 | #7 |
它選擇第一個提到的每個元素其父級元素 | #8 | ##焦點
它選擇具有焦點的上述元素 td> |
#9 ##懸停 |
#10
在範圍內 |
|
#11
無效 |
|
#12 lang (語言) |
|
13
last-child |
|
14
last-of -type |
|
15
連結 |
|
16
not(selector) |
|
17
nth-child(n ) |
|
18
nth-last-child(n) |
|
#19
nth-last -oftype(n ) |
|
20
nth-of-type(n) |
|
21 only-of-type |
|
22only-child | |
#23 ##可選 | 它選擇沒有「required」屬性的上述元素|
td> |
#24 超出範圍 | 它選擇值超出指定範圍的提到的元素
#25 只讀 | 它使用「readonly」選擇提到的元素指定屬性|
#26##讀寫
它選擇沒有「readonly」屬性的上述元素 |
|
#27 required
它選擇指定了「required」屬性的提到元素 |
|
#28##root它選擇文件的根元素 | |
29 |
##目標 它選擇目前提到的活動元素(點擊包含該錨點名稱的URL) |
30 |
有效 它选择具有有效值的所有提到的元素 |
31 |
访问过 它选择所有访问过的提到的元素 | tr>
让我们看一个 CSS 伪类的示例 -
现场演示
<!DOCTYPE html> <html> <head> <title>CSS Anchor Pseudo Classes</title> </head> <style> div { color: #000; padding:20px; background-image: linear-gradient(135deg, grey 0%, white 100%); text-align: center; } .anchor { color: #FF8A00; } .anchor:last-child { color: #03A9F4; } .anchor:visited { color: #FEDC11; } .anchor:hover { color: #C303C3; } .anchor:active { color: #4CAF50; } </style> <body> <div> <h1>Search Engines</h1> <a class="anchor" href="https://www.google.com" target="_blank">Go To Google</a> <a class="anchor" href="https://www.bing.com" target="_blank">Go To Bing</a> </div> </body> </html>
这将产生以下输出 -
让我们看一下 CSS 伪类的另一个示例 -
现场演示
<!DOCTYPE html> <html> <head> <title>CSS Pseudo Classes</title> <style> form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; box-sizing: border-box; } .child{ display: inline-block; height: 40px; width: 40px; color: white; border: 4px solid black; } .child:nth-of-type(1){ background-color: #FF8A00; } .child:nth-of-type(2){ background-color: #F44336; } .child:nth-of-type(3){ background-color: #C303C3; } .child:nth-of-type(4){ background-color: #4CAF50; } .child:nth-of-type(5){ background-color: #03A9F4; } .child:nth-of-type(6){ background-color: #FEDC11; } .child:hover{ background-color: #000; } </style> </head> <body> <form> <fieldset> <legend>CSS-Pseudo-Classes</legend> <div id="container"> <div class="child"></div><div class="child"></div><div class="child"></div><div class="child"></div><div class="child"></div><div class="child"></div> </div><br> </body> </html>
这将产生以下输出 -
当未将鼠标悬停在 div 元素上时 -
当鼠标悬停在 div 元素上时 -
以上是使用 CSS 偽類的詳細內容。更多資訊請關注PHP中文網其他相關文章!