0
我正在嘗試使用CSS和XHTML製作模板。標記位置在不同瀏覽器中發生變化
現在,我遇到的問題是根據瀏覽器在我的模板更改位置上的標記之一。這是我想要的方式,當我用Chrome中打開它,但是當我用IE瀏覽器打開它,它右移....
這裏是我的模板CSS代碼
<style type="text/css">
#header {
background-color: FEB7B7;
height: 100px;
width: 800px;
margin-left: auto;
margin-right: auto;
position: relative;
}
#menu {
background-color: FBFEB7;
height: 50px;
width: 440px;
left: 791px;
top: 58px;
color: Black;
position: absolute;
z-index: 2;
color: Black;
}
#content {
background-color: B7CCFE;
height: 730px;
width: 800px;
margin-left: auto;
margin-right: auto;
}
#footer {
background-color: BCFEB7;
height: 40px;
width: 800px;
margin-left: auto;
margin-right: auto;
}
</style>
請爲我們製作http://jsfiddle.net。 (你定義的十六進制顏色錯誤,你忘記了##盈方) – noob 2011-12-16 07:30:51
所以問題是菜單不是在正確的地方吧?實際上菜單應該在標題內,因爲你不能說正確的是固定像素大小,如果其他div是自動在中心的軟件,因爲它將取決於瀏覽器窗口和屏幕大小 – noob 2011-12-16 07:50:18