반응형웹, Typical Device Breakpoints, media queries
반응형웹, Typical Device Breakpoints, media queries https://www.w3schools.com/css/tryit.asp?filename=trycss_mediaqueries_fontsize Tryit Editor v3.6 div.example { background-color: lightgrey; padding: 20px; } @media screen and (min-width: 600px) { div.example { font-size: 80px; } } @media screen and (max-width: 600px) { div.example { font-size: 30px; } } Change the font size of an element on differen..