1. background css 속성
- background-color
<style>
body { background-color: lightblue; }
h1 { background-color: rgb(255,128,0); }
p { background-color: #FFFFCC; }
</style>
- background-image
<style>
body { background-image: url("/examples/images/img_background_good.png"); }
</style>
- background-repeat
<style>
body { background-image: url("/examples/images/img_man.png"); background-repeat: repeat-x; }
</style>
- background-position
<style>
body {
background-image: url("/examples/images/img_man.png");
background-repeat: no-repeat;
background-position: top right;
background-position: 100px 200px; //직접적인 수치로 명시도 가능
}
</style>
- background-attachment
<style>
body {
background-image: url("/examples/images/img_man.png");
background-repeat: no-repeat;
background-position: left bottom;
background-attachment: fixed;
}
</style>
- background 속성 한번에 작성하기
<style>
body { background: #FFCCCC url("/examples/images/img_man.png") no-repeat left bottom fixed; }
</style>
'내마음대로만들어보자 > HTML' 카테고리의 다른 글
인라인 구조 vs 블럭 구조 태그 종류 (0) | 2022.04.09 |
---|---|
여백 초기화 참고 (0) | 2022.04.09 |
HTML5 아웃라이너(틀잡기) (0) | 2022.04.09 |
반응형 사이트 만들기 - 레이아웃5 (0) | 2022.04.08 |
반응형 사이트 만들기 - 레이아웃4 (0) | 2022.04.07 |