배경색과 배경 이미지

CSS 2014. 8. 21. 23:25
반응형

body {

background-color:#ff0000;                         /* #ff0000, rgb(255, 0, 0), red */

background-image:url(background.jpg);

background-repeat:repeat;                          /* repeat, repeat-x, repeat-y, no-repeat */

background-position:50% 50%;                 /* 50px 50px, left top, right bottom */

background-attachment: fixed;                 /* scroll */

background-size: auto;                               /* auto, contain, cover, 크기값, 백분율 */

background-clip:border-box;                    /* padding-box, content-box */

background-origin:border-box;                /* padding-box, content-box */

}


또는

body{

background: url(background.jpg) repeat 50% 50% fixed;

}



반응형

'CSS' 카테고리의 다른 글

box-shadow 속성.  (0) 2014.08.22
크기 값 단위.  (0) 2014.08.21
속성 선택자  (0) 2014.08.21
Posted by 컴스터
,