菜鸟学堂
在线运行
源代码
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟学堂()</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>
运行结果
在线运行
菜鸟学堂 edu.jb51.net