使用 CSS 相关文章


若要选择所有元素,请使用 * CSS 选择器。你可以尝试运行以下代码以选择所有元素,

示例

在线示例

<!DOCTYPE html>
<html>
   <head>
      <style>
         *{
            color: blue;
            background-color: orange;
         }
      </style>
   </head>
   <body>
      <h1>Demo Website</h1>
      <h2>Learning</h2>
      <p id = "tutorials">Tutorials on web dev, programming, database, networking, etc.</p>
      <p>Every tutorials has lessons with illustrations and figures.</p>
   </body>
</html>

更新於: 2020-06-24

193 浏览次数

开启您的职业

完成课程,获得认证

开始
广告