How can I ensure that HTML5 markup elements such as <header>
, <section>
, and <footer>
are displayed properly in Internet Explorer?
I've noticed that when I apply CSS to these elements, the styling doesn't always work as expected. However, I have seen it done successfully on websites like colourfreak.com and would appreciate some guidance.
I suspect it may have to do with selectors not recognizing new tag names. For example, something like this might not work:
nav a {
text-decoration: none;
}
I would greatly benefit from a detailed explanation or informative article on this topic. Thank you!