HTML5 headerタグ 反映されない

ホームページ作成

ご存知の通りHTML5の新要素(nav, article, header, footer, section, hgroup)はIE7,IE8では認識しません。

つまり、正しくタグ打ちしても表示されないのです。

そこで、回避方法があります。

GitHub - aFarkas/html5shiv: This script is the defacto way to enable use of HTML5 sectioning elements in legacy Internet Explorer.
This script is the defacto way to enable use of HTML5 sectioning elements in legacy Internet Explorer. - GitHub - aFarkas/html5shiv: This script is the defacto ...

head要素内に下記を記述します。

<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
そして、ダウンロードしたファイルを解凍し
「html5shiv.js」ファイルを「js」フォルダにコピーします。

※ここではファルダ名は「js」としましたが何でもOKです。

これでOKです。

タイトルとURLをコピーしました