Internet Explorer unable to render any kind of background color for the
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;
}

Updated on: 25-Jun-2020

99 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements