CSS gets all screwed up in IE(like half of the CSS didn't get loaded)?

Many of the elements your applying styles to are HTML5 - IE8 and below don't recognize them as valid, block-level, or stylable.

Many of the elements your applying styles to are HTML5 - IE8 and below don't recognize them as valid, block-level, or stylable. For old versions of Firefox, you just need to do stuff like: section, article {display:block;} For old versions of IE, use this in the head.

Great, that worked, thanks! – Andrew Sep 29 at 21:25.

FYI, you have a number of CSS errors. http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Feksai.com%2Ftesting%2Ffiles%2Fpublic.css&profile=css21&usermedium=all&warning=1&vextwarning=&lang=en EDIT: You're also using HTML5 elements, so you might want to include something like Modernizr, which will adapt HTML5 to downlevel browsers.

I want to first downgrade to the minimum working page just to get something that works – Andrew Sep 29 at 21:13 1 @Andrew - nav and section are both HTML5, and not supported by IE.

IE8 and below do not support CSS for unknown elements which you use in HTML5 by default (no fuzz in IE9 though). But if you create a element of the same tagname with JS document. CreateElement, IE will magically become aware if those previously unknown elements.

See here: ejohn.org/blog/html5-shiv/ So use a script which creates dummy elements of HTML5 and you can go on. remysharp.com/2009/01/07/html5-enabling-....

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions