选择每个
    前面的元素

    元素 CSS


使用元素 ~ 元素选择器选择 <p> 元素前面的 <ul> 元素。你可以尝试运行以下代码来实现此操作

示例

动态演示

<!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>

更新于:2020 年 6 月 24 日

2K+ 浏览量

开启你的 职业

完成课程即可获得认证

开始学习
广告