CSS選擇器加號+的作用是什麼:此選擇器能夠匹配指定元素後面緊鄰的兄弟元素。代碼實例如下: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com
CSS選擇器加號+的作用是什麼:
此選擇器能夠匹配指定元素後面緊鄰的兄弟元素。
代碼實例如下:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> #items{ width:900px; height:auto; margin:0 auto; padding:5px 0; clear:both; } #items ul, #items li{ list-style:none; } #items li{ width:500px; height:28px; text-align:left; padding-left: 0px; line-height:28px; border-bottom:dashed 1px #CCC; cursor:pointer; } .first + li{ color:red; } </style> </head> <body> <div id="items"> <ul> <li class="first">螞蟻部落歡迎您,只有努力奮鬥才會有美好的未來</li> <li>沒有任何人一開始就是高手,必須要好好學習</li> <li>本站的url地址是softwhy.com</li> <li>每一天都是新的,所以要好好真心當前時間</li> <li>div css教程裡面有大量詳實的代碼</li> </ul> </div> </body> </html>
上面的代碼可以將class屬性值為first的li元素後面緊鄰的第一個li元素的字體顏色設置為紅色。
原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=18186
更多內容可以參閱:http://www.softwhy.com/divcss/