夥計! 我有下面的代碼網站:手機全寬容器
<html>
<head>
<!-- some code here -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="screenFourth">
<div class="container">
<!-- a lot of tags -->
</div>
</div>
</body>
</html>
所以問題是,如果我打開網站上的移動它在屏幕的右側的空白處。這裏是它的形象: Empty space on the right side
CSS代碼如下:
.screenFourth{
background-image: url(...);
background-size: cover;
background-position: top;
min-height: 1380px;
}
@media screen and (max-width: 760px){
.container{ width: 100%; margin: 0 auto; }
}
我怎樣才能解決這個問題?謝謝!
.screenFourth:100vw; – Gerard
你可以發佈圖片的網址嗎? –
@VladoPandžić點擊「空白在右側」鏈接。 – tohhy