选择每一个
    在后面紧跟的元素

    与 CSS 一起元素


使用元素 ~ 元素选择器选择紧跟在

示例

实际演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         p~ul {
            color: white;
            background-color: blue;
         }
      </style>
   </head>
   <body>
      <h1>Demo Website</h1>
      <h2>Fruits</h2>
      <div>
         <p>Vegetables are good for health.</p>
         <ul>
            <li>Spinach</li>
            <li>Onion</li>
            <li>Capsicum</li>
         </ul>
      </div>
      <p>Fruits are good for health.</p>
      <ul>
         <li>Apple</li>
         <li>Orange</li>
         <li>Kiwi</li>
      </ul>
   </body>
</html>

更新于: 24-Jun-2020

2K+ 浏览

开启您的职业

完成课程获得认证

开始学习
广告