CSS E:only-child
E:only-child是偽類選擇器,匹配父元素僅有,且型別為E的子元素。
語法結構:
[CSS] 純文字檢視 複製程式碼E:only-child{ Rules }
引數解析:
(1).E:CSS選擇器。
(2).Rules:CSS具體規則宣告。
瀏覽器支援:
(1).IE9+瀏覽器支援此選擇器。
(2).edge瀏覽器支援此選擇器。
(3).谷歌瀏覽器支援此選擇器。
(4).火狐瀏覽器支援此選擇器。
(5).opera瀏覽器支援此選擇器。
(6).safria瀏覽器支援此選擇器。
程式碼例項:
[HTML] 純文字檢視 複製程式碼執行程式碼<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> li:only-child{ color:blue; } </style> </head> <body> <ul> <li>螞蟻部落一</li> <li>螞蟻部落二</li> <li>螞蟻部落三</li> <li>螞蟻部落四</li> </ul> </body> </html>
程式碼執行效果截圖如下:
由於ul元素下並非只有一個元素,所以匹配失敗。
[HTML] 純文字檢視 複製程式碼執行程式碼<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> li:only-child{ color:blue; } </style> </head> <body> <ul> <li>螞蟻部落</li> </ul> </body> </html>
程式碼執行效果截圖如下:
由於ul下僅有一個li元素,所以可以將其字型顏色設定為藍色。
[HTML] 純文字檢視 複製程式碼執行程式碼<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> .a:only-child{ color:blue; } </style> </head> <body> <ul> <li class="a">螞蟻部落</li> </ul> </body> </html>
程式碼執行效果截圖如下:
上述程式碼的E為一個class選擇器。
由此可見,E也可以是其他型別選擇器,不必須是元素選擇器。
相關文章
- jQuery :only-childjQuery
- CSS E:not()CSS
- CSS E:targetCSS
- CSS E:emptyCSS
- CSS E:rootCSS
- CSS E[att^="val"]CSS
- CSS E::selectionCSS
- CSS E:first-childCSS
- CSS E:first-of-typeCSS
- CSS E:last-childCSSAST
- CSS E:only-of-typeCSS
- CSS E::first-letterCSS
- CSS E:last-of-typeCSSAST
- CSS E:nth-child(n)CSS
- CSS E:enabled 選擇器CSS
- CSS E:focus 選擇器CSS
- CSS E,F 選擇器CSS
- CSS E[att]選擇器CSS
- CSS E:active 選擇器CSS
- CSS E:nth-of-type(n)CSS
- CSS E:nth-last-of-type(n)CSSAST
- CSS E[att*="val"]選擇器CSS
- CSS E:nth-last-child(n)CSSAST
- CSS E~F 兄弟選擇器CSS
- CSS E:link 選擇器CSS
- CSS E:visited 選擇器CSS
- CSS E[att$="val"] 選擇器CSS
- CSS E F 包含選擇器CSS
- CSS E[att|="val"]選擇器CSS
- CSS E[att~="val"]選擇器CSS
- CSS (E>F)子選擇符CSS
- CSS E[att="val"]選擇器CSS
- CSS E:default 偽類選擇器CSS
- CSS E::after 偽元素選擇器CSS
- CSS E:disabled偽類選擇器CSS
- CSS E:disabled 偽類選擇器CSS
- CSS E:checked 偽類選擇器CSS
- CSS E:hover偽類選擇器CSS