CSS:基本文法及派生選取器,css派生選取器

來源:互聯網
上載者:User

CSS:基本文法及派生選取器,css派生選取器

本文介紹css基本文法及派生選取器。

代碼整理自w3school:http://www.w3school.com.cn

(一)基礎部分:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta http-equiv="Content-Language" content="zh-cn" /><head><style type="text/css">h1,h2,h3 {color:red;background-color:#ccc}li strong {font-style:italic;}</style></head><title>CSS基礎</title><body>  <h1>h1,h2,h3 級標題為CSS樣式指定為灰底紅字<h1>  <h2>h1,h2,h3 級標題為CSS樣式指定為灰底紅字<h2>  <h3>h1,h2,h3 級標題為CSS樣式指定為灰底紅字<h3>  <h4>h4級標題沒有被指定樣式<h3>  <hr/>  <!--派生選取器-->  <h4>派生選取器允許你根據文檔的上下文關係來確定某個標籤的樣式。</p>  <p><strong>我是粗體字,不是斜體字,因為我不在列表當中,所以這個規則對我不起作用</strong></p>  <ol>    <li><strong>我是斜體字。這是因為 strong 元素位於 li 元素內。</strong></li>    <li>我是正常的字型。</li>  </ol></body></html>

(二)樣式的“覆蓋”規則

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta http-equiv="Content-Language" content="zh-cn" /><head>  <style type="text/css">    strong {color: red;}    h2 {color: red;}    h2 strong {color: blue;}  </style></head><title>CSS基礎-樣式的“覆蓋”規則</title><body>  <p>The strongly emphasized word in this paragraph is <strong>red</strong>.</p>  <h2>This subhead is also red.</h2>  <h2>The strongly emphasized word in this subhead is <strong>blue</strong>.</h2></body></html>


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.