css选择器 :first-of-type 测试demoedit icon

作者:
lynn-ssk
Fork(复制)
下载
嵌入
设置
BUG反馈
index.html
现在支持上传本地图片了!
            
            <!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <style>
    div:first-of-type {
      color: red;
    }
  </style>
</head>

<body>
  <div>第一个 div</div>
  <p>一个段落</p>
  <div>第二个 div</div>
  <section>
    <div>嵌套的第一个 div</div>
    <div>嵌套的第二个 div</div>
  </section>
</body>

</html>
        
预览
控制台
清空