使用CSS重置所有属性


使用 all 属性可重置所有属性。将所有属性设置为 initial、inherit 或 unset。

示例

你可以尝试运行以下代码来实现 CSS all 属性

现场演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         html {
            color: blue;
         }
         #demo {
            background-color: yellow;
            color: red;
            all: inherit;
         }
      </style>
   </head>
   <body>
      <h2>CSS all property</h2>
      <div id = "demo">This is demo text.</div>
   </body>
</html>

更新于:2020-07-06

596 次浏览

开启你的职业生涯

通过完成课程获得认证

开始学习
广告