background-color, background-image, background-repeat, background-position, background-attachment 등 속성을 활용해서 배경효과를 줄 수 있다.div{background-color: aqua;}
div{background-image: url(../img/iclogo.png);}
background-repeat 값으로 설정 가능
div{background-repeat: repeat-x;}
div{background-repeat: repeat-y;}
div{background-repeat: no-repeat;}
repeat-x: 이미지 반복 x축만

repeat-y: 이미지 반복 y축만

no-repeat: 이미지 반복 x

div{background-position: center top;}
div{background-position: left center;}
div{background-position: center center;}
div{background-position: right 20px top 50px;}
div{background-position: right top;}
div{background-attachment: fixed;}
div{background-attachment: scroll;}
fixed: 스크롤시 이미지 안보이고 그자리 그대로 고정scroll: 스크롤시 이미지가 따라옴div{background: aqua url(../img/iclogo.png) no-repeat right 20px top 50px;}
color, image, repeat, position