CSS 参考手册
CSS all 属性
修改所有元素或其父元素的属性为初始
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> html { font-size: small; color: blue; } #ex1 { background-color: yellow; color: red; } #ex2 { background-color: yellow; color: red; all: inherit; } #ex3 { background-color: yellow; color: red; all: initial; } #ex4 { background-color: yellow; color: red; all: unset; } </style> </head> <body> <p>没有 all 属性:</p> <div id="ex1">蜜蜂教程 -- 有问题,找小蜜!!!</div> <p>all: inherit:</p> <div id="ex2">蜜蜂教程 -- 有问题,找小蜜!!!</div> <p>all: initial:</p> <div id="ex3">蜜蜂教程 -- 有问题,找小蜜!!!</div> <p>all: unset:</p> <div id="ex4">蜜蜂教程 -- 有问题,找小蜜!!!</div> <p><b>注意:</b> Internet Explorer 和 Safari 浏览器不支持 all 属性。</p> </body> </html>
运行结果:
点击运行 »