实例首页
自学教程
IT工具箱
源代码
下载代码
上下布局
点击运行 >
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS all 属性 实例 - 自学教程(runoops.com)</title> <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>
运行结果: