I am working on a SharePoint 2013 website. Strangely, IE8 is not displaying the background color of the title bar correctly. However, it seems to work perfectly fine in all other browsers including IE9, IE10, and more. Has anyone else come across this issue before?
CSS
.title
{
background-color: rgb(154, 153, 152);
}
HTML
<div class="title">
<div class="logo"></div>
<div class="search"></div>
</div>
Upon inspecting the developer tools, I can confirm that the style is being applied to the element. Despite this, the background color does not show up as expected and renders as white instead.