Robię stronę znajomemu i idąc z duchem czasów staram się to robić na DIV'ach ale IE vs. inne przeglądarki nie współpracuje. Dlatego kieruje do was pytanie odnośnie pozycjonowania strony
na divach i fixy do IE?
Poniżej przedstawiam kod co jest źle, albo inaczej co zrobić żeby IE dobrze wyświetlało treść tak jak np. w moim przypadku CHROME.
Pozdrawiam
Sasku
<html> <style> * {margin:0; padding:0;} body, html { width:900px; height:100%; margin:0 auto; font-family:lucida sans unicode; font-size:12px; color:#000; } #wrapper1 { width:900px; height:280px; background:#0fe3ef;} #header { width:100%; height:100%; } #wrapper2 {width:400px; height:auto !important; background:#ed0; float:left; margin:0 auto;} #news { width:100%;} #tips { width:100%;} #wrapper3 {width:490px; height:auto !important; float:right;} #oferta-div { width:490px;} #o1 { float:left; width:230px; height:150px; padding:1px; border:1px #ccc solid; margin:5px;} #losowe { width:100%; float:right;} #footer { width:900px; float:left; background:pink;} </style> <body> <div id="wrapper1"> </div> <div id="wrapper2"> </div> <div id="wrapper3"> <div id="oferta-div"> </div> <div id="losowe"> Losowe </div> </div> </body> </html>
Make my day

