使用CSS重置所有属性
使用all属性重置所有属性。将所有属性设置为初始,继承或未设置。
示例
您可以尝试运行以下代码来实现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>
以上是 使用CSS重置所有属性 的全部内容, 来源链接: utcz.com/z/352438.html