首頁 > web前端 > css教學 > 主體

CSS 中 :first-child 偽類的用法

WBOY
發布: 2023-09-05 10:49:02
轉載
1257 人瀏覽過

CSS 中 :first-child 伪类的用法

使用 :first-child 伪类向作为其他元素的第一个子元素的元素添加特殊样式。

示例

您可以尝试运行以下代码来了解 :first-child 伪类的用法 -

<html>
   <head>
      <style>
         div > p:first-child
         {
            text-indent: 25px;
         }
      </style>
   </head>
   <body>
      <div>
         <p>First paragraph in div. This paragraph will be indented</p>
         <p>Second paragraph in div. This paragraph will not be indented</p>
      </div>
         <p>But it will not match the paragraph in this HTML:</p>
      <div>
         <h3>Heading</h3>
         <p>The first paragraph inside the div. This paragraph will not be effected.</p>
      </div>
   </body>
</html>
登入後複製

以上是CSS 中 :first-child 偽類的用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板