我正在製作一個具有旋轉背景圖像的網頁。在本地主機上開發,我安排了一些東西,讓圖像中的人物定位在我想要的位置。但是,當我推送到服務器並在不同瀏覽器中打開網頁時,有些人不在屏幕上,並且結果因瀏覽器而異。CSS:本地主機和服務器之間的對齊更改
這是我使用
.animate-this .img1,
.animate-this .img3 {
clear: left;
display: block;
width: 100%;
height: 1210px;
margin-left: auto;
margin-right: auto;
}
.animate-this .img2 {
clear: left;
display: block;
width: 1620px;
height: 1210px;
margin-left: auto;
margin-right: auto;
background-color: #2b292b;
background-repeat: no-repeat;
}
.animate-this .img4 {
clear: left;
display: block;
width: 1522px;
height: 1210px;
background-color: #2b292b;
background-repeat: no-repeat;
}
請附上您的html。 – Narendra
在您的服務器CSS和您的本地CSS上運行差異。另請檢查您部署的背景圖像是否與本地版本相同。這很可能是您的部署方法中的一些錯誤。 – Duopixel
@Rain你知道Ruby on Rails嗎?很難顯示HTML而沒有發佈來自不同文件,並且問題在於背景圖像正在隨着javascript而改變。但是,你可以看看服務器上的應用程序在sugarpova.herokuapp.com – Leahcim