0

这是这个网站: http ://www.morpheuscommerce.com/

现在,当我在 ipad 上查看该网站时会发生这种情况:http: //i.imgur.com/I4cQ9Yb.jpg

类似的事情发生在 iPhone 上。在桌面上它起初看起来不错,但是当您调整浏览器大小并将滚动条向右移动时,背景坏了!

我已经尝试了很多东西来尝试解决这个问题,但我不确定首先是什么导致了这个问题。

4

1 回答 1

0

您的网站没有响应式布局。

您可以使用 css @media 更改它

/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {
/* Styles */
}

/* Smartphones (landscape) ----------- */
@media only screen 
and (min-width : 321px) {
/* Styles */
}

/* Smartphones (portrait) ----------- */
@media only screen 
and (max-width : 320px) {
/* Styles */
}

/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
/* Styles */
}

/* iPads (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
/* Styles */
}

/* iPads (portrait) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
/* Styles */
}

/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 1224px) {
/* Styles */
}

/* Large screens ----------- */
@media only screen 
and (min-width : 1824px) {
/* Styles */
}

/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
/* Styles */
}

搜索有关响应式布局的更多信息。

于 2013-04-14T12:06:41.467 回答