NataliRuge
New Member
I basically want to create a webpage which supports HTML5's semantic elements however for browsers, which doesn't note the HTML5 elements, what can I do?For example I'd like to use \[code\]<section></section>\[/code\] which is noted by modern browsers, but what could I do to show a DIV instead of a SECTION if someone visits my site in an older browser?I have tried to use the following code, which would only be useful for Internet Explorer, but hat about other browsers?\[code\]<section class="main"> <!--[if IE]> <div class="main-ie"> Only displayed only in IE .</div> <![endif]--></section>\[/code\]Any suggestions?