media query 란?오직 CSS 만을 이용해서 스크린의 사이즈를 알 수 있는 방법이다. DOCTYPE html>html lang="kr"> head> title>The Nick Timestitle> style> body { display: flex; height: 100vh; align-items: center; justify-content: center; } div { background-color: teal; width: 200px; height: 200px; } @media screen and (max-width: 600px;) { div { background-color: tomato; } } style> head> body> div>div> body>html> 해석: 스크린이 600px..