[CSS] 배경 속성(이미지, 그라데이션, 그림자, 불투명도)
.test{ background-image: url('이미지 주소'); background-repeat: no-repeat; background-position:center; background-size: cover; } background-image: url('이미지주소'); 배경이미지를 넣을 수 있도록 하는 태그 background-position 배경의 위치를 정하는 태그 top, right, bottom, left, left top(기본값), center 2개를 적으면 가로, 세로로 취급한다.(center center 가로 세로 둘 다 가운데 정렬) background-repeat 이미지를 반복할지 않할지 정하는 태그 repeat, no-repeat background-size 배경의 크기를 정하..