CSS에서 그림(background) 설정에 대한 소감 요약
1935 단어 CSS
background:#eee;
backgroud-image:url("img/bg.jpg");
background-position: 0 0;// x , y
background-position: 0 100px;
, ,
background-position: top right; // top top right right
background-position: 100% 50%; // ,
background-repeat: repeat; //
background-repeat: no-repeat ; //
background-repeat: repeat-x; // x
background-repeat: repeat-y; // y
background-repeat: inherit; //
background-attachment: scroll; // ;
background-attachment: fixed; // , ,
background-attachment: inherit;//
background: transparent url(image.jpg) 50% 0 scroll repeat-y;
css3에는 백그라운드에 다음과 같은 여러 속성이 추가되었습니다. background-size: contain; // ( )
background-size: cover; // ( )
background-size: 50% 100%; //
background-clip: border-box; //
background-clip: padding-box; // padding ( )
background-clip: content-box; // ( padding , )
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【Grunt】 복수의 CSS, JavaScript 파일을 minfy한다여러 CSS, JavaScript 파일을 Grunt를 사용하여 단번에 각각 하나의 파일로 minfy합니다. ① Gruntfile 작성 ② package.json 쓰기 ④ html CSS, JavaScript 지정 부...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.