강의

멘토링

커뮤니티

Inflearn Community Q&A

gye040564850's profile image
gye040564850

asked

Interactive Development Practice End [Capacity Enhancement]

Implementing scroll event and parallax

css 질문 드립니다

Written on

·

620

0

 .bottom 클래스 스타일에

background: url(../image/bottom.png) center bottom/100% no-repeat;

로 되어있는데 center bottom/100% 부분은 background-position 속성값일까요?

bottom/100% 부분이 이해가 안되서 질문 남깁니다.

인터랙티브-웹인터랙티브-웹javascript

Answer 1

0

coding11님의 프로필 이미지
coding11
Instructor

안녕하세요 감기에 걸려서 답변이 늦었습니다. (감기 조심하세요...)

center bottom 은 position 속성값이 맞고요 뒤의 100%는 size 입니다.

background: url(../image/bottom.png) center bottom/100% no-repeat;
background-position : 50% 20%;  //이렇게 바꿔보세요
background-position : 100px 100px; 
background-size : 50%;
background-size : cover;

위처럼 따로 쓰셔도 됩니다.

길어져서 보통 한 줄로 쓰기는 합니다.

 

gye040564850's profile image
gye040564850

asked

Ask a question