I am dynamically adding <link> elements to the head once the DOM is ready. However, I'm getting inconsistent results in IE8 and IE7 (all other browsers are fine).
Every few times the page is loaded (cached or uncached), IE 7/8 will drop a handful of CSS rules in the stylesheets. 1 or 2 of my dynamic stylesheets will not load. It's always the same 1 or 2 stylesheets that IE tends to ignore - even though the Developer Toolbar shows them as added to the head!.
The stylesheets themselves show up as <link> elements in the final DOM, but some of their rules are not applied (although every few reloads they are applied, without any issue).
In my position, I do not have the luxury of writing code from the <head> (CMS restriction) - I can only dynamically insert from the body, which may be the issue.
UPDATED: This is the code I am using (located within the <body>) to insert stylesheets:
document.observe('dom:loaded', function() { // Using Prototype.js
// Add stylesheets
// addStylesheet('cite.css', 'head'); // Contains no webfont/@font-face rules
// addStylesheet('type.css', 'head'); // Contains webfont family name references*
// addStylesheet('flex.css', 'head'); // Responsive rules with @media queries
// addStylesheet('anm8.css', 'head'); // Some minor positional CSS for home page
// addStylesheet('gothic-cite.css', 'head'); // *Contains @font-face config
// addStylesheet('stag-cite.css', 'head'); // *Contains @font-face config
addStylesheet('all.css', 'head'); // Contains ALL content from above in 1 file
function addStylesheet(cssname, pos2)
{
var th2 = document.getElementsByTagName(pos2)[0];
var s2 = document.createElement('link');
s2.setAttribute('type', 'text/css');
s2.setAttribute('href', cssname);
s2.setAttribute('media', 'screen');
s2.setAttribute('rel', 'stylesheet');
th2.appendChild(s2);
}
});
As suggested, even when I combined all rules into one stylesheet (which I hate doing), IE 7/8 continues to flip-flop as described with some rules, and the page appears differently.
As a further check, I also removed all @font-face and referenced font-family: "webfont-name" rules from the stylesheets, and the same behavior continued. Therefore, we can rule out webfonts being the issue.
You can see the anomalies by visiting the following with IE8 and refreshing/clicking the nav several times. It seems completely random as to when IE8 is dropping those styles. However, in the natively-built control page, all styles load correctly, every time.
Live Page (with problems)
https://www.eiseverywhere.com/ehome/index.php?eventid=31648&tabid=50283
- PHP-based CMS prints out XHTML on page load (template content mixed w/user content)
Prototype.jsis loaded and initialized by default on page load- CMS proprietary
scripts.jsfile is parsed on page load - My scripts run when DOM is loaded, essentially replacing
body.innerHTMLCMS fluff-HTML with just the HTML I want, then adds stylesheets to<head>. - For
lte IE 8, CSS extension plugins (selectivizr.js, html5.js, and ie-media-queries.js) are loaded within the<body>via conditional comments. Not sure if they wait forDOM:loaded... The CMS WYSIWYG editor converts all carriage-returns to empty
<p>tags, resulting in elements like<section>being contained inside broken<p>tags, and extra<p></p>tags being created where whitespace is expected. Onlylt IE 8seems to choke on this, however, so I added the following CSS rules to remedy this::not(.ie7) p { display: none; } .ie7 p { display: inline; } article p { display: block !important; }I should note that the external stylesheets here are being pulled from the same domain, but each time they are re-uploaded, a new MD5-based URL is generated for the file. I'm not sure if previous revisions to the file (or previous files) are still available by their previous URLs. This isn't likely to be the problem though, since the newly created
all.cssstylesheet is still dropping rules that have been in the file from the start.
Control Page (works flawlessly)
http://client.clevelanddesign.com/CD/IDG/CITE/home.html
- Pure XHTML document - no PHP.
- jQuery is used, rather than Prototype, for IE8 and below.
- All resources (stylesheets) are present in
<head>at page load - no dynamic insertion - For
lte IE 8, CSS extension plugins (selectivizr.js, html5.js, and ie-media-queries.js) are initialized natively.
Rephrased question:
Which of these differences do you think may be causing IE 7/8 to flip-flop on styles when loaded on the Live page? I personally suspect either a race-condition issue, or that Prototype.js and the other CMS scripts are mucking things up (unfortunately no way to purge those from the page though).
PS: I've already tried using IE's createStylsheet() function, to no avail.
UPDATE - Screenshots of working/not working in IE8
IE8: DOM code when loaded correctly:

IE8: DOM code when NOT loaded correctly:

type.cssandflex.cssintocite.cssand see if anything is different. It should work exactly the same. – Sparky Dec 28 '11 at 20:01@font-face {...}) and rules that reference thefont-familynames given therein are not present 50% of the time, and follow the same inconsistent loading pattern with IE 7/8 as described in the question above. 1: Shouldn't combining them have had no impact on IE's choice to apply the rules? 2: Why is IE dropping the@font-facerules every so often? – atwixtor Dec 28 '11 at 21:08