CSS에서 배경 이미지를 지정하고 스마트폰으로 보면 배경이 중간에 끊기고(일탈)

3932 단어 HTMLCSS
.container의 너비를 width:100%로 설정하고 background:url(bg.jpg) top center no-repeat처럼 배경 이미지를 지정합니다.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>CSS</title>
<style type="text/css">
body { margin:0; padding:0; }
.container {
    width:100%;
    height:1278px;
    background:url(bg.jpg) top center no-repeat;
}
.inner {
    width:960px;
    background:yellow;
    margin:0 auto;
}
</style>
</head>
<body>
<div class="container">
    <div class="inner">ここは、inner エリアです。</div>
</div>
</body>
</html>
PC에 문제가 없으면 배경 이미지가 표시됩니다.

스마트폰이라면 배경이 중간에 차단(일탈)돼 나타난다.

지정min-width으로 해결할 수 있습니다.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>CSS</title>
<style type="text/css">
body { margin:0; padding:0; }
.container {
    width:100%;
+   min-width:960px;
    height:1278px;
    background:url(bg.jpg) top center no-repeat;
}
.inner {
    width:960px;
    background:yellow;
    margin:0 auto;
}
</style>
</head>
<body>
<div class="container">
    <div class="inner">ここは、inner エリアです。</div>
</div>
</body>
</html>

좋은 웹페이지 즐겨찾기