当我在Ipad4(肖像分辨率)上启动网站时,身体背景img太高,与部分相同(高度设置为100vh)。
如何缩短背景,我该怎么办?
下面我附上网站链接:
http://uptoclouds.pl/miniporadnik/pazdziernik2015/
我猜还有其他一些错误,但经过2个月的学习后,这是我的第一个网站(其他提示非常受欢迎)。
答案 0 :(得分:0)
试试此代码(适用于iPad的解决方法)
/**
* iPad with portrait orientation.
*/
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
section {
height: 1024px;
}
}
您还可以将margin: 0
添加到body
代码并从部分删除margin-top: -8px
。