
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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
Internet Explorer unable to render any kind of background color for the <main> element.
Internet Explorer 11 does not support the <main> element. Add support using Modernizr of the following JS −
document.createElement('main');
Adding the above element, will not give you the element for the browser, therefore, you need to use the following CSS finally −
main { display:block; }
Advertisements