简单教程
提交运行
代码编辑器:
<!DOCTYPE html> <meta charset="utf-8"> <link href="/static/next/css/tryit.css?v=2017082407" rel="stylesheet"/> <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> <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> <footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer>
运行结果: