あなたは正しくHTML5を処理するために、古いブラウザを教えることができます。
HTML5ブラウザのサポート
HTML5は、すべての最新ブラウザでサポートされています。
また、新旧のすべてのブラウザは、自動的にインライン要素として認識されない要素を扱います。
このため、以下のことができ"teach"処理するために、古いブラウザを"unknown" HTML要素を。
あなたも、IE6教えることができます(Windows XP 2001)未知のHTML要素を処理する方法。
ブロック要素としてHTML5要素を定義
HTML5は、8つの新しいセマンティック HTML要素を定義します。 これらはすべて、 ブロックレベル要素です。
古いブラウザで正しい動作を確保するために、あなたはブロックするようにCSSのdisplayプロパティを設定することができます。
header, section, footer, aside, nav, main, article, figure {
display: block;
}
HTMLに新しい要素を追加します
また、ブラウザのトリックをHTMLに任意の新しい要素を追加することができます。
この例では、と呼ばれる新しい要素追加<myHero> HTMLにし、そのための表示スタイルを定義しています。
例
<!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>
»それを自分で試してみてください JavaScriptステートメントのdocument. createElement("myHero") document. createElement("myHero")のみIEを満たすために、追加されます。
インターネットエクスプローラでの問題
あなたはすべての新しいHTML5要素のために、上記のソリューションを使用していますが、できます。
Internet Explorer 8およびそれ以前は、未知の要素のスタイリングを許可していません。
ありがたいことに、スジョアード・ビスシャー作成した"HTML5 Enabling JavaScript" " the shiv ":
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
上記のコードはコメントですが、IE9への以前のバージョンではそれを読みます(and understand it) 。
完全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>
»それを自分で試してみてください リンクshivコードが中に配置する必要があり<head> Internet Explorerはそれらを読む前に、すべての新しい要素について知っておく必要があるため、要素。
HTML5スケルトン
例
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML5 Skeleton</title>
<meta charset="utf-8">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js">
</script>
<![endif]-->
<style>
body {font-family: Verdana, sans-serif; font-size:0.8em;}
header,nav, section,article,footer
{border:1px solid grey; margin:5px; padding:8px;}
nav ul {margin:0; padding:0;}
nav ul li {display:inline; margin:5px;}
</style>
</head>
<body>
<header>
<h1>HTML5 SKeleton</h1>
</header>
<nav>
<ul>
<li><a href="html5_semantic_elements.asp">HTML5 Semantic</a></li>
<li><a href="html5_geolocation.asp">HTML5 Geolocation</a></li>
<li><a href="html5_canvas.asp">HTML5 Graphics</a></li>
</ul>
</nav>
<section>
<h1>Famous Cities</h1>
<article>
<h2>London</h2>
<p>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.</p>
</article>
<article>
<h2>Paris</h2>
<p>Paris is the capital and most populous city of France.</p>
</article>
<article>
<h2>Tokyo</h2>
<p>Tokyo is the capital of Japan, the center of the Greater Tokyo Area,
and the most populous metropolitan area in the world.</p>
</article>
</section>
<footer>
<p>© 2014 w3ii. All rights reserved.</p>
</footer>
</body>
</html>
»それを自分で試してみてください