바탕 화면의 경우 iPad의 경우 배경에있는 이미지의 가로 세로 비율은 background-size: cover
일 때 유지되지만 내 Android 휴대 전화 (크롬)에서는 이미지가 width:100%;height:100%
처럼 더 많은 것처럼 보입니다.가로 세로 비율을 유지하지 않는 배경 크기의 덮개 android chrome
할 수 있습니다 see it in action here.
Here's a screenshot from my phone
// 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..
}
나는이 답변을 충분히 투표 할 수 없다! –