{"id":500,"date":"2013-05-30T22:15:52","date_gmt":"2013-05-31T05:15:52","guid":{"rendered":"http:\/\/hellbach.us\/blog\/?p=500"},"modified":"2013-06-05T14:10:33","modified_gmt":"2013-06-05T21:10:33","slug":"html5-and-previous-browsers","status":"publish","type":"post","link":"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/","title":{"rendered":"HTML5 and previous browsers"},"content":{"rendered":"<div class='__iawmlf-post-loop-links' style='display:none;' data-iawmlf-post-links='[{&quot;id&quot;:4863,&quot;href&quot;:&quot;http:\\\/\\\/www.nczonline.net\\\/blog\\\/2011\\\/03\\\/22\\\/using-html5-semantic-elements-today&quot;,&quot;archived_href&quot;:&quot;http:\\\/\\\/web-wp.archive.org\\\/web\\\/20170715221609\\\/https:\\\/\\\/www.nczonline.net\\\/blog\\\/2011\\\/03\\\/22\\\/using-html5-semantic-elements-today\\\/&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2025-11-19 16:55:15&quot;,&quot;http_code&quot;:206}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2025-11-19 16:55:15&quot;,&quot;http_code&quot;:206},&quot;process&quot;:&quot;done&quot;},{&quot;id&quot;:4864,&quot;href&quot;:&quot;http:\\\/\\\/www.paulirish.com\\\/2011\\\/the-history-of-the-html5-shiv&quot;,&quot;archived_href&quot;:&quot;http:\\\/\\\/web-wp.archive.org\\\/web\\\/20251011223548\\\/https:\\\/\\\/www.paulirish.com\\\/2011\\\/the-history-of-the-html5-shiv\\\/&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2025-11-19 16:55:19&quot;,&quot;http_code&quot;:206}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2025-11-19 16:55:19&quot;,&quot;http_code&quot;:206},&quot;process&quot;:&quot;done&quot;},{&quot;id&quot;:4865,&quot;href&quot;:&quot;https:\\\/\\\/github.com\\\/aFarkas\\\/html5shiv#readme&quot;,&quot;archived_href&quot;:&quot;http:\\\/\\\/web-wp.archive.org\\\/web\\\/20251011223546\\\/https:\\\/\\\/github.com\\\/aFarkas\\\/html5shiv&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2025-11-19 16:55:21&quot;,&quot;http_code&quot;:200}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2025-11-19 16:55:21&quot;,&quot;http_code&quot;:200},&quot;process&quot;:&quot;done&quot;},{&quot;id&quot;:4866,&quot;href&quot;:&quot;http:\\\/\\\/webdesignerwall.com\\\/tutorials\\\/css-specific-for-internet-explorer&quot;,&quot;archived_href&quot;:&quot;http:\\\/\\\/web-wp.archive.org\\\/web\\\/20250920004213\\\/https:\\\/\\\/webdesignerwall.com\\\/tutorials\\\/css-specific-for-internet-explorer&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2025-11-19 16:55:22&quot;,&quot;http_code&quot;:200}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2025-11-19 16:55:22&quot;,&quot;http_code&quot;:200},&quot;process&quot;:&quot;done&quot;}]'><\/div>\n<ul>\n<li><a href=\"http:\/\/www.nczonline.net\/blog\/2011\/03\/22\/using-html5-semantic-elements-today\/\" target=\"_blank\" rel=\"nofollow\"><span style=\"font-size: 12px; line-height: 12px;\">Using HTML5 semantic elements today<\/span><\/a><\/li>\n<li><a href=\"http:\/\/www.paulirish.com\/2011\/the-history-of-the-html5-shiv\/\" target=\"_blank\" rel=\"nofollow\">The Story of the HTML5 Shiv<\/a> by Paul Irish<\/li>\n<li><a href=\"https:\/\/github.com\/aFarkas\/html5shiv#readme\" target=\"_blank\" rel=\"nofollow\">html5shiv<\/a> (from GitHub)<\/li>\n<li><a href=\"http:\/\/webdesignerwall.com\/tutorials\/css-specific-for-internet-explorer\" target=\"_blank\" rel=\"nofollow\">CSS Specific for Internet Explorer<\/a>\n<ol>\n<li>IE Conditional Comments\n<pre style=\"font-size: .85em;background-color:#f3efc3;\">&lt;!--[if IE 8]&gt;\r\n&lt;style type=\"text\/css\"&gt;\r\n\t\/* css for IE 8 *\/\r\n&lt;\/style&gt;\r\n&lt;![endif]--&gt; \r\n&lt;!--[if lt IE 8]&gt;\r\n\t&lt;link href=\"ie7.css\" rel=\"stylesheet\" type=\"text\/css\" \/&gt;\r\n&lt;![endif]--&gt;<\/pre>\n<\/li>\n<li>CSS Rules Specific to Explorer (IE CSS hacks)\n<pre style=\"font-size: .85em;background-color:#f3efc3;\">.box {\r\n\tbackground: gray; \/* standard *\/\r\n\tbackground: pink\\9; \/* IE 8 and below *\/\r\n\t*background: green; \/* IE 7 and below *\/\r\n\t_background: blue; \/* IE 6 *\/\r\n}\r\n<\/pre>\n<\/li>\n<li>Conditional HTML Class\n<pre style=\"font-size: .85em;background-color:#f3efc3;\">&lt;!--[if lt IE 7 ]&gt; &lt;html class=\"ie6\"&gt; &lt;![endif]--&gt;\r\n&lt;!--[if IE 7 ]&gt; &lt;html class=\"ie7\"&gt; &lt;![endif]--&gt;\r\n&lt;!--[if IE 8 ]&gt; &lt;html class=\"ie8\"&gt; &lt;![endif]--&gt;\r\n&lt;!--[if IE 9 ]&gt; &lt;html class=\"ie9\"&gt; &lt;![endif]--&gt;\r\n&lt;!--[if (gt IE 9)|!(IE)]&gt;&lt;!--&gt; &lt;!--&lt; ![endif]--&gt;\r\n<\/pre>\n<\/li>\n<\/ol>\n<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Using HTML5 semantic elements today The Story of the HTML5 Shiv by Paul Irish html5shiv (from GitHub) CSS Specific for Internet Explorer IE Conditional Comments &lt;!&#8211;[if IE 8]&gt; &lt;style type=&#8221;text\/css&#8221;&gt; \/* css for IE 8 *\/ &lt;\/style&gt; &lt;![endif]&#8211;&gt; &lt;!&#8211;[if lt &hellip; <a href=\"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/\">Continue reading <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[17,29,2],"tags":[],"class_list":["post-500","post","type-post","status-publish","format-standard","hentry","category-comp","category-dev","category-tech"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>HTML5 and previous browsers - Hellbach blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"HTML5 and previous browsers - Hellbach blog\" \/>\n<meta property=\"og:description\" content=\"Using HTML5 semantic elements today The Story of the HTML5 Shiv by Paul Irish html5shiv (from GitHub) CSS Specific for Internet Explorer IE Conditional Comments &lt;!--[if IE 8]&gt; &lt;style type=&quot;text\/css&quot;&gt; \/* css for IE 8 *\/ &lt;\/style&gt; &lt;![endif]--&gt; &lt;!--[if lt &hellip; Continue reading &rarr;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/\" \/>\n<meta property=\"og:site_name\" content=\"Hellbach blog\" \/>\n<meta property=\"article:published_time\" content=\"2013-05-31T05:15:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2013-06-05T21:10:33+00:00\" \/>\n<meta name=\"author\" content=\"alex\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"alex\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/\"},\"author\":{\"name\":\"alex\",\"@id\":\"https:\/\/hellbach.us\/blog\/#\/schema\/person\/9bf1a63e253268c42a6e9db64611c507\"},\"headline\":\"HTML5 and previous browsers\",\"datePublished\":\"2013-05-31T05:15:52+00:00\",\"dateModified\":\"2013-06-05T21:10:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/\"},\"wordCount\":41,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/hellbach.us\/blog\/#\/schema\/person\/9bf1a63e253268c42a6e9db64611c507\"},\"articleSection\":[\"Computer\",\"Dev\",\"Technology\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/\",\"url\":\"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/\",\"name\":\"HTML5 and previous browsers - Hellbach blog\",\"isPartOf\":{\"@id\":\"https:\/\/hellbach.us\/blog\/#website\"},\"datePublished\":\"2013-05-31T05:15:52+00:00\",\"dateModified\":\"2013-06-05T21:10:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/hellbach.us\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HTML5 and previous browsers\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hellbach.us\/blog\/#website\",\"url\":\"https:\/\/hellbach.us\/blog\/\",\"name\":\"Hellbach blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/hellbach.us\/blog\/#\/schema\/person\/9bf1a63e253268c42a6e9db64611c507\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hellbach.us\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/hellbach.us\/blog\/#\/schema\/person\/9bf1a63e253268c42a6e9db64611c507\",\"name\":\"alex\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hellbach.us\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9868a7f8fd709cd74cf51d978359a3ce66a47a17cd57185a9e1a4774d288e228?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9868a7f8fd709cd74cf51d978359a3ce66a47a17cd57185a9e1a4774d288e228?s=96&d=mm&r=g\",\"caption\":\"alex\"},\"logo\":{\"@id\":\"https:\/\/hellbach.us\/blog\/#\/schema\/person\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"HTML5 and previous browsers - Hellbach blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/","og_locale":"en_US","og_type":"article","og_title":"HTML5 and previous browsers - Hellbach blog","og_description":"Using HTML5 semantic elements today The Story of the HTML5 Shiv by Paul Irish html5shiv (from GitHub) CSS Specific for Internet Explorer IE Conditional Comments &lt;!--[if IE 8]&gt; &lt;style type=\"text\/css\"&gt; \/* css for IE 8 *\/ &lt;\/style&gt; &lt;![endif]--&gt; &lt;!--[if lt &hellip; Continue reading &rarr;","og_url":"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/","og_site_name":"Hellbach blog","article_published_time":"2013-05-31T05:15:52+00:00","article_modified_time":"2013-06-05T21:10:33+00:00","author":"alex","twitter_card":"summary_large_image","twitter_misc":{"Written by":"alex","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/#article","isPartOf":{"@id":"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/"},"author":{"name":"alex","@id":"https:\/\/hellbach.us\/blog\/#\/schema\/person\/9bf1a63e253268c42a6e9db64611c507"},"headline":"HTML5 and previous browsers","datePublished":"2013-05-31T05:15:52+00:00","dateModified":"2013-06-05T21:10:33+00:00","mainEntityOfPage":{"@id":"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/"},"wordCount":41,"commentCount":0,"publisher":{"@id":"https:\/\/hellbach.us\/blog\/#\/schema\/person\/9bf1a63e253268c42a6e9db64611c507"},"articleSection":["Computer","Dev","Technology"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/","url":"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/","name":"HTML5 and previous browsers - Hellbach blog","isPartOf":{"@id":"https:\/\/hellbach.us\/blog\/#website"},"datePublished":"2013-05-31T05:15:52+00:00","dateModified":"2013-06-05T21:10:33+00:00","breadcrumb":{"@id":"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/hellbach.us\/blog\/tech\/html5-and-previous-browsers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hellbach.us\/blog\/"},{"@type":"ListItem","position":2,"name":"HTML5 and previous browsers"}]},{"@type":"WebSite","@id":"https:\/\/hellbach.us\/blog\/#website","url":"https:\/\/hellbach.us\/blog\/","name":"Hellbach blog","description":"","publisher":{"@id":"https:\/\/hellbach.us\/blog\/#\/schema\/person\/9bf1a63e253268c42a6e9db64611c507"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hellbach.us\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/hellbach.us\/blog\/#\/schema\/person\/9bf1a63e253268c42a6e9db64611c507","name":"alex","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hellbach.us\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9868a7f8fd709cd74cf51d978359a3ce66a47a17cd57185a9e1a4774d288e228?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9868a7f8fd709cd74cf51d978359a3ce66a47a17cd57185a9e1a4774d288e228?s=96&d=mm&r=g","caption":"alex"},"logo":{"@id":"https:\/\/hellbach.us\/blog\/#\/schema\/person\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/hellbach.us\/blog\/wp-json\/wp\/v2\/posts\/500","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hellbach.us\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hellbach.us\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hellbach.us\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/hellbach.us\/blog\/wp-json\/wp\/v2\/comments?post=500"}],"version-history":[{"count":0,"href":"https:\/\/hellbach.us\/blog\/wp-json\/wp\/v2\/posts\/500\/revisions"}],"wp:attachment":[{"href":"https:\/\/hellbach.us\/blog\/wp-json\/wp\/v2\/media?parent=500"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hellbach.us\/blog\/wp-json\/wp\/v2\/categories?post=500"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hellbach.us\/blog\/wp-json\/wp\/v2\/tags?post=500"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}