【发布时间】:2015-01-21 07:25:11
【问题描述】:
我正在尝试创建一个全屏 div,到目前为止,它在 chrome、firefox 和 safari 上都能完美运行,但在 ipad 和 iphone 上,背景图像和 div 的大小不成比例。 这是我目前所拥有的:
HTML
<div class="intro">
(content)
</div>
CSS
.intro {
width:100%;
min-height: 100vh;
margin: 0;
background-image: url("../img/background.jpg");
background-position: center center;
background-repeat: no-repeat;
background-attachment:fixed;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
height: 100%;
}
如何在移动 Safari 上解决此问题? 谢谢
【问题讨论】:
标签: ios css iphone ipad safari