

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
HTML5 semantic elements and which old browsers does it support?
Internet Explorer 8 and older versions does not support semantic elements like nav, header and article. To style semantic elements, Modernizer is used. Some CSS can be added to block CSS by default.
article, header, nav, section, footer { display:block; }
We can also create our own elements through JavaScript by writing following code −
<script> document.createElement('nav'); //nav is semantic element document.createElement('header'); //header is semantic element document.createElement('article'); //article is semantic element </script>
- Related Questions & Answers
- Which browsers support the HTML5 History API?
- Do any browsers yet support HTML5's checkValidity() method?
- Does HTML5 Canvas support Double Buffering?
- Does Python support polymorphism?
- Does MySQL support table inheritance?
- Does Python support multiple inheritance?
- Does java support hybrid inheritance?
- Does JavaScript support block scope?
- Does Selenium support Safari browser?
- How to detect HTML5 audio MP3 support
- Does C++ support Variable Length Arrays
- Does Java support multi-dimensional Arrays?
- Does Selenium support headless browser testing?
- How to check web browser support in HTML5
- What type of comments does C++ support?
Advertisements