본문 바로가기

html5

미디어쿼리


미디어쿼리
-----------------------------------------------------------------------------

<link rel="stylesheet" type="text/css" href="">

<link rel="stylesheet" type="text/css" href="" media="only all and (max-width: 480px)">

<link rel="stylesheet" type="text/css" href="" media="only all and (min-width: 480px) and (max-width: 1024px)">

<link rel="stylesheet" type="text/css" href="" media="only all and (min-width: 1200px)">

<link rel="stylesheet" type="text/css" href="" media="only screen and (-webkit-min-device-pixel-ratio: 2)" >

 <!-- 레티나 디스플레이 때 사용 -->

<link rel="stylesheet" href="portrait.css" media="all and (orientation:portrait)">  <!-- 포터블에서 레이아웃 변경시 세로보기 -->

<link rel="stylesheet" href="landscape.css" media="all and (orientation:landscape)"> <!-- 포터블에서 레이아웃 변경시 가로보기 -->



------------------------------------------------------------

'html5' 카테고리의 다른 글

ResponseEve - 반응형 웹디자인 템플릿 다운로드 사이트 소개  (0) 2013.02.27
0908 토요일 html5  (0) 2012.09.08
9월 1일 모바일 사이트  (0) 2012.09.01