<aside> 💡 반응형 웹사이트는 경험과 많은 노력이 필요하다.
</aside>
화면 크기
@media screen and (min-width : 576px){}
화면 방향
@media only screen and (orientation : portrait){}
픽셀 밀도 : 얼마나 고해상도 폰이냐?
@media only screen and (device-pixel-ratio:2){}
@media only screen and (resolution:144dpi){}
화면 비율 : 화면의 비율
@media only screen (aspect-ratio:2/3){}
마우스 포인터
@media only screen and (pointer : coarse) and (any-point : fine) {}
프린트 장치
@media and screen { background:rgb(230, 230, 230) }
컬러 & 컬러모드
@media only screen and (perfers-color-scheme : dark) {}