I have a <thead>
that is not displaying its background colour. Yet all other CSS rules work as normal. Here is the code i've written
HTML file:
<link rel="stylesheet" href="css/General.css">`
...
<thead class="tableheader">
In my externally referenced CSS file:
.tableHeader {
background-color: #428bca !important; /*blue*/
color:white;
}
This works fine in all other browsers except ie 11. In the DOM explorer of developer tools, i can see it has picked up other rules from my css file so im not sure why it would skip this one. Any ideas?
EDIT: ok obviously i cant read.. The css rule has a capital H.. but.. my question is still the same. Why the different behaviour? why are some browsers case sensitive and others not?