在css中,可以利用「:first-child」和「:not」選擇器選取除了第一個元素的其他元素,並且設定其他元素的樣式,語法為「元素:not(: first-child){css樣式代碼;}」。
本教學操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。
css怎麼排除第一個元素為其他元素設定樣式
在css中可以利用「:first-child」選擇器和“:not”選擇器來設定除了第一個元素其他元素的樣式。
:first-child 選擇器用於選取屬於其父元素的首個子元素的指定選擇器。
:not(selector) 選擇器符合非指定元素/選擇器的每個元素。
下面我們透過範例來看一下,範例如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> tr:not(:first-child){ background-color:red; } </style> <table border="1" class="tab"> <tr> <td>111</td> <td>222</td> </tr> <tr> <td>333</td> <td>444</td> </tr> <tr> <td>555</td> <td>666</td> </tr> <tr> <td>777</td> <td>888</td> </tr> </table> </body> </html>
輸出結果:
(學習影片分享: css影片教學)
以上是css怎麼排除第一個元素給其他元素設定樣式的詳細內容。更多資訊請關注PHP中文網其他相關文章!