Jump to content

Explorer


Sami

Recommended Posts

It's not that difficult. The box model problem is solved by putting a proper DTD on your page. Most of the other inconsistencies ( in IE7 and up) are very small simple to fix. Even Internet Explorer 6 has solutions for most CSS problems.The real problem comes when trying to build complex Javascript applications.

Link to comment
Share on other sites

To start off, your page is running in quirks mode. You should change to a proper DTD and make sure your page is valid.When in quirks mode browsers render things wildly different from eachother, and if your code is not valid the effect is similar.You should try an HTML Strict or XHTML Strict DTD.

Link to comment
Share on other sites

To start off, your page is running in quirks mode. You should change to a proper DTD and make sure your page is valid.When in quirks mode browsers render things wildly different from eachother, and if your code is not valid the effect is similar.You should try an HTML Strict or XHTML Strict DTD.
OR instead you could use HTML5 's Doctype! http://w3schools.com/html5/tag_doctype.asplook at that! it may help with your "quirk mode'
Link to comment
Share on other sites

If you don't know what a doctype is you need to figure it out right now. IE is very picky about the whole doctype thing whereas Fire fox is not as strict about it. Many resources will tell you With out a DOCTYPE a web page will be rendered differently in different browsers So if this is because there is no doctype then this is normal. If not then you are going to have to dig through code and find out why IE doesn't like your web page.Programming cross-browser code can be no fun especial ( actually almost always ) For IE.Check out http://www.w3schools.com/xhtml/xhtml_dtd.asp if you have not done so already.NOTE: for feature projects you should test with fire fox and IE at the same time so you don't get to the end of a project and say 'hay I should probably test this in explorer.' Fix problems as you go :)

Link to comment
Share on other sites

What bug is
body {width:200px}

fixing? Looks like a possible screwed up thing...

That's because when the window size was small enough, the page was displayed correctly, then I made an attemp to fix it that way untill later.
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...