kishanio
kishanio

Reputation: 7079

HTML- Content not rendered properly in IE else it works just perfect in FF / chrome

The following thing on the image is perfect in FF / chrome. Like the required behavior is achieved but when on IE its completely messed up. I had been in loop past few hours. Please help. Thanks.

![this is messed up in IE http://kishanthobhani.goodluckwith.us/mess.PNG

here is my code: http://kishanthobhani.goodluckwith.us/myseagatecode.txt


Just to let you know, we added Doctype to the My Pages, and it fixed the alignment issues that were only seen in IE8. Thanks everyone.

Upvotes: 0

Views: 202

Answers (2)

Quentin
Quentin

Reputation: 943547

You have no Doctype, this means your page will be rendered in Quirks mode in which browsers attempt to emulate buggy software from the 90s instead of following the standard.

Start your HTML with a Doctype that triggers Standards mode.

You also have a number of errors that some basic automated QA (from a validator) would pick up. You should correct those too.

Upvotes: 1

SamStar
SamStar

Reputation: 335

Validate your html using http://validator.w3.org/. When your html passes, post a pic of what it should look like (the current pic being the problem).

Upvotes: 0

Related Questions