# background-size
- 배경 이미지 크기를 조절합니다
- background-size : width; -> height: auto
background-size : width height
# background-attachment
- 웹 페이지의 배경이 스크롤될 때 어떻게 동작할지를 결정합니다
- scroll : 배경 이미지가 요소와 함께 스크롤됩니다
요소 내부에서 스크롤하면 배경도 함께 움직입니다
fixed : 배경 이미지가 고정되어 스크롤되지 않습니다
페이지나 요소가 스크롤되어도 배경은 그 자리에 머무릅니다
local : 요소 내부에서 스크롤할 때 배경 이미지도 함께 스크롤됩니다
body {
margin: 0 auto;
background-image: url('../../image/bg_image/BackgroundFront.png'),
url('../../image/bg_image/BackgroundBack.png');
background-size: 100% 250px;
background-repeat: no-repeat;
background-position: top;
background-attachment: fixed;