background-image 를 넣으면 아래와 같이 배경이 가득 차지 않고, 분할되어 나올 때가 있다.

/* [body 의 배경으로 넣는 상황] */
body, html {
height: 100%;
}
.body {
background-image: url();
/* Full height */
height: 100%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
