在台式机上,iPad 当元素具有时,背景中的图像保持其纵横比background-size: cover
,但在我的 Android 手机(chrome)上,图像看起来更像width:100%;height:100%
,
你可以在这里看到它的实际效果。
// Markup
<div class="wrapper">
<div class="content">
...
// Style
html, body {
height: 100%
}
.wrapper {
position: relative;
height: 100%;
background-image: url(...);
background-size: cover;
..vendor prefixes..
}