网站背景不会在其他移动设备上调整大小

时间:2013-04-14 10:08:17

标签: html css media-queries

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

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

类似的事情发生在iPhone上。在桌面上它看起来很好,但是当你调整浏览器大小并向右移动滚动条时,背景就会被破坏!

我已经尝试了很多东西来尝试解决这个问题,但我不确定最初会导致问题的原因。

1 个答案:

答案 0 :(得分: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 */
}

详细了解自适应布局。