모바일에서 하단에 위치한 배너
.elem{
position:fixed;
bottom:0;
left:0;
}
미디어 쿼리를 써서
데스크 톱에서는 상단에 위치시키고 싶을 때
@media screen and (min-width:768px){
.elem{
top:0;
bottom:auto;
}
}
element를 배치시킬때
top과 bottom 둘 중 하나 + right과 left 둘 중 하나를 써서 배치시키는데
위에서는 bottom을 썼고
아래 미디어 쿼리에서는 top을 써야할 때,
bottom을 풀어줘야한다.
이때 bottom:auto를 써주면 알아서 높이 설정 됨
(bottom:auto를 빼먹으면 경우에 따라 화면 전체가 배너로 뒤덮일 수도..)
'CSS > learned_it_today' 카테고리의 다른 글
세로가 긴 이미지, 가로가 긴 이미지 div에 맞추기 (0) | 2020.10.26 |
---|---|
width:100%; max-width:736px; (0) | 2020.10.23 |
position:absolute;의 기준점 부모는 position:static만 아니면 된다. (0) | 2020.10.22 |
모달(modal) viewport 중앙에 위치 시키기 (0) | 2020.10.22 |
input, button 못생긴 테두리 없애기 (0) | 2020.10.22 |