웹표준,웹접근성(html, html5, css, css3, javascript, jQuery, jQueryMobile, snecha, senchaTouch, php, mobileWebApp)

[html5] IE8 이하 브라우저 본문

html5

[html5] IE8 이하 브라우저

jokack01 2011. 11. 10. 11:54


<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>IE8 이하 브라우저는 HTML5에서 새롭게 추가된 의미요소를 인식하지 못합니다.</title>
<style type="text/css">
 
 /* CSS reset */
 header, footer,
 section, article, aside, nav {
  display: block;
 }
 
 header, footer  { color: #f05b21; }
 section   { color: #315fb8; }
 article   { color: #4f4078; }
 aside    { color: #ff0043; }
 nav    { color: #b99424; } 
</style>
<!--[if lt IE 9]><script src="js/html5.js"></script><![endif]-->
</head>
<body>

 <header>header</header>

 <section>section</section>
 
 <article>article</article>
 
 <aside>aside</aside>
 
 <nav>nav</nav>
 
 <footer>footer</footer>
 
</body>
</html>

'html5' 카테고리의 다른 글

HTML5 - header  (0) 2011.11.10
HTML5 - footer  (0) 2011.11.10
HTML5 - aside  (0) 2011.11.10
HTML5 - article  (0) 2011.11.10
HTML5 - using Division  (0) 2011.11.10