The main
element is indeed not fully supported by IE11. Adding main { display: block; }
to your CSS is the best solution for IE9+. You don't need to make conditional comments - since display: block;
is the default behavior for main
elements, it won't mess up anything.