I'm facing an issue with a banner div under my navigation. It seems to show up in Google Chrome but doesn't appear in IE9. Below is the HTML and CSS code:
HTML:
<div class="content">
<div class="slide-banner"></div>
</div>
CSS:
.slide-banner {
margin: 0 auto;
padding: 0px;
width: 650px;
height: 200px;
background: #ff0000;
}
EDIT:
Despite trying all the suggestions given, I realized that it might not be an issue with my code itself but rather with my browser. To confirm, I ran the code on two other PCs with IE9 and it worked perfectly fine. Thank you for all the help, it was much appreciated!