CSS經驗分享一,相鄰選擇符

來源:互聯網
上載者:User

現在有IE7,IE8,firefox3的出現,讓CSS可以做更多的事情,讓我們來看看CSS相鄰選擇符.

相鄰選擇符就是能夠以緊跟元素,並與其有共同父元素的元素為目標的選擇符.

------------------------------------------------

注意:IE6.0及以下版本不支援此選擇符

-----------------------------------------------

請看樣本:
 h1 + p
        {
            color: Red;
        }

Code
 1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 2<html xmlns="http://www.w3.org/1999/xhtml">
 3<head>
 4    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
 5    <title>相鄰選擇符</title>
 6    <style type="text/css" media="all">
 7        h1 + p
 8        {}{
 9            color: Red;
10        }
11    </style>
12</head>
13<body>
14    <h1>
15        CSS經驗分享開遍</h1>
16    <p>
17        DIV和CSS給我們還的好處!</p>
18    <p>
19        使用CSS讓我們代碼更少,讓我們統一風格,更容易</p>
20</body>
21</html>
22

這裡代碼只是說明了相鄰選擇符的作用,實際中大家可以靈活應該,可以發現能解決很多問題,不過目前普遍都還是IE6,並不建議使用!

相鄰選擇可以解決段落預設有1em的邊框問題.

  h1 + p
        {
            margin-top:0px;
        }

在firefox下效果

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.