2013-03-03 63 views
0

我製作了一個帶圖片的網站,當我在圖片頁面上輸入時...單擊下一步,預覽圖片將圖片浮動到右側。在IE中運行良好,但在谷歌瀏覽器,Mozilla,Safari ......中間頁面向右移動。 我試過在CSS中的變化,但沒有想法。你可以幫我嗎? 在此先感謝!當我更改頁面時,頁面中間向右移動

類 「內容」 我把報頭和CSS代碼

body { 
    /*background-color: none; 
    border-radius: 25px; 
    background-image:url('/images/gray_jean.png');*/ 
    background: #ffffff; 
    color: #000000; 
    margin:0; 
    padding:0; 
} 

.content { 
    position:relative; 
    margin:0 auto; 
    margin-left: auto; 
    margin-right: auto; 
    text-align: center; 
    width:100%; 
    clear: both; 
} 

由於

回答

0

替換當前的代碼這一點,

.content { 
    margin:0 auto; 
    text-align: center; 
    width:100%; 
} 
+0

謝謝 - 我把你的線,但沒有什麼時,我添加HTML { overflow-y:scroll; }和正常。內容{0} {0} {0} {0} text-align:center; 寬度:100%; }它工作超級。非常感謝。 – Carl 2013-03-10 11:13:13

0

卸下position:relative;.content

.content { 
    position:relative; // Remove this 
} 

並嘗試,可能是?

+2

而且,請打給我? (忍不住) – 2013-03-03 16:21:23

+0

LoL。我不知道該說些什麼。 – 2013-03-03 17:13:15