Hello everyone, I have developed a website http://www.akademikpencere.com/. The problem is some divs elements are not being posistioned well in IE, but they are positioned well in Firefox and Chrome. How to solve this problem ? Is there any way to make sure what ever I develop for one browser will work for another ? thank you.
For IE, you can use conditional comments and include your CSS that targets IE only; for the rest of the standard-compliant browsers, the main CSS file should be used. This way, you can use a different stylesheet for IE and fix your problem.
You may also try putting Eric Meyer Reset CSS into your main stylesheet.
Your problem is in the float:right
CSS applied to the DIV
s on the side of your content_one_sag
area. It looks as though you have a fixed-width system applied (336+10+10 px) and something in IE is causing the DIVs to break to the next line.
As a quick fix, I'd suggest widening the parent by a pixel or four. Or, narrowing the children by a pixel or four.
Also, you could experiment with clear:both
to remove floats when necessary from DIVs (maybe apply to giris_submit
).