I have a dynamically loaded CSS file that contains a css line with an ID like this:
#__my_css_id{
width: 100%;
height: 100%;
left: 0px;
top: 0px;
position: fixed;
background-color: #202020;
}
I CANNOT change the fact that this page renders in quirks mode as it is a remotely hosted script (my script that is). Some pages are quirks, some are not.
When in quirks mode and IE9 (didn't try other IE versions) the css does not seem to load properly or at all. In fact, if I DEBUG the css using IE debugger (F12) then I see all the CSS but all the css IDS say UNKNOWN if they begin with the two underscores like this #__
If I debug the elements and check the css, none of the css rules are there. Does quirks mode not allow underscores in the beginning of the css ID?
Thanks!