.box {
width: 100%;
height: 100px;
border: 4px solid red;
}
@media screen and (max-width: 1260px) {
.box {
width: 90%;
background-color: red;
}
}
// 테블릿 화면
@media screen and (max-width: 768px) {
.box {
width: 80%;
background-color: blue;
}
}
// 모바일 브라우저
@media screen and (max-width: 576px) {
.box {
background-color: greend;
}
}
media query는 css 맨 마지막에 사용된다.
왜 그러느냐? css는 맨 마지막에 있는 것들이 적용되기 때문에.
'Mark Up > CSS' 카테고리의 다른 글
[CSS] Chapter 14. CSS Position(relative, absolute) 한 방에 정리 (0) | 2023.04.18 |
---|---|
[CSS] Chapter 12. Position(static, relative, absolute, fixed, sticky), z-index, overflow (0) | 2023.01.06 |
[CSS] Chapter 11. 레이아웃 만들기 - grid (0) | 2022.12.29 |
[CSS] Chapter 10. 레이아웃 만들기 - float (0) | 2022.12.29 |
[CSS] Chapter 09. 레이아웃 만들기 - display_inline (0) | 2022.12.29 |
댓글