Html5瀏覽器支援,Html5瀏覽器
HTML5 瀏覽器支援把 HTML5 元素定義為區塊層級元素語義塊級displayblock執行個體header, section, footer, aside, nav, main, article, figure { display: block; } 向 HTML 添加新元素<myHero>執行個體<!DOCTYPE html><html><head><title>Creating an HTML Element</title><script>document.createElement("myHero")</script><style> myHero { display: block; background-color: #ddd; padding: 50px; font-size: 30px; } </style></head><body><h1>My First Heading</h1><p>My first paragraph.</p><myHero>My First Hero</myHero></body></html>document.createElement("myHero")
完整的 Shiv 解決方案執行個體<!DOCTYPE html><html><head> <title>Styling HTML5</title> <!--[if lt IE 9]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--></head><body><h1>My First Article</h1><article>London is the capital city of England. It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</article></body></html> 這是最基本的,後續更新!