- <style type="text/css">
- /* screen의 width가 640px이하일때 아래와 같은 옵션을 적용 */
- @media screen and (max-width:640px) {
- .article {background:#fff; font-size:20px; color:#000}
- ??}
-
- /* width가 최소640 최대 640px로도 지정가능 */
- @media screen and (min-width:640px) and (max-width:640px) {
- .article {background:#fff; font-size:12px; color:#000}
- }
- </style>
-
- <span class='article'>안녕하세요. 반응형웹입니다.</span>
http://naradesign.net/wp/2012/05/30/1823/