[CSS] 꼭 맞는 배경 만들기

soor.dev·2021년 4월 13일

HTML & CSS

목록 보기
1/5

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;
}

0개의 댓글