본문 바로가기

CSS

CSS background

background-color 배경색상

     :①hex ②rgb ③rgba

 

background-image 배경이미지

     :url('./img/star.png');

 

background-repeat 반복

     : repaet│no-repeat

       기본값 

 

background-size 배경사이즈

     : contatin 사진을 전부다 포함 (사진 안잘림)

     : cover  요소를 꽉 채우겠다 (사진잘림)

     : custom 내맘대로 ex) background-size : 24px 24px;

      

background-position 위치

       x축위치 y축위치;

    ex) background-postion : center bottom;

                                            : center 30px;

     

'CSS' 카테고리의 다른 글

CSS animation  (0) 2020.07.24
CSS transition  (0) 2020.07.23
CSS typography  (0) 2020.07.23
CSS Flexbox  (0) 2020.07.22
CSS float  (0) 2020.07.22