๐ฅ๏ธํ๋ก ํธ์๋/HTML | CSS | JAVASCRIPT
CSS - ๋ฏธ๋์ด ์ฟผ๋ฆฌ
Janger
2021. 11. 29. 07:18
728x90
<meta name="viewport" content="width=device-width, initial-scale=1.0">
/* width under 576px */
@media (max-width: 575px){
body{ background-color: white; }
}
/* Mobile */
@media (min-width: 576px) and (max-width: 767px){
body{ background-color: red; }
}
/* Tablet */
@media (min-width: 768px) and (max-width: 991px){
body{ background-color: green; }
}
/* Desktop */
@media (min-width: 992px) and (max-width: 1199px){
body{ background-color: blue; }
}
/* width over 1200px */
@media (min-width: 1200px){
body{ background-color: orange; }
}
์ฐธ๊ณ :
[๋ฐ์ํ์น] ๋ชจ๋ฐ์ผ ํผ์คํธ CSS ์์ฑํ๊ธฐ / ๋ฐ์คํฌํ ํผ์คํธ
๋ชจ๋ฐ์ผ ์ฌ์ฉ์๊ฐ ์ ์ ๋์ด๋๋ฉด์ ๋ฐ์ํ ๋ธ๋ผ์ฐ์ ์ ์ค์์ฑ์ด ๋ ๋ก ์ปค์ง๊ณ ์๋ค. ๋ฐ์ํ ์น ์์ ์ ํ ๋์๋ CSS ๋ฏธ๋์ด ์ฟผ๋ฆฌ๊ฐ ํ์์ธ๋ฐ, ๋ฏธ๋์ด ์ฟผ๋ฆฌ ์์ฑ ๋ฐฉ๋ฒ์๋ ์ข ๋ฅ๊ฐ ์๋ค. ์ด๋ค ๋๋ฐ
fromnowwon.tistory.com
728x90