Media Queries详解

iPhone4

 <link rel="stylesheet" media="only screen and (-webkit-min-device-pixel-ratio: 2)" type="text/css" href="iphone4.css" />
上面的样式是专门针对iPhone4的移动设备写的。

Pad

<link rel="stylesheet" media="all and (orientation:portrait)" href="portrait.css" type="text/css" /> 
  <link rel="stylesheet" media="all and (orientation:landscape)" href="landscape.css"  type="text/css" />
在大数情况下,移动设备iPad上的Safari和在iPhone上的是相同的,只是他们不同之处是iPad声明了不同的方向,比如说 上面的例子,在纵向(portrait)时采用portrait.css来渲染页面;
在横向(landscape)时采用landscape.css来渲 染页面。

android

/*240px的宽度*/
  <link rel="stylesheet" media="only screen and (max-device-240px)" href="android240.css" type="text/css" />
  /*360px的宽度*/
  <link rel="stylesheet" media="only screen and (min-device-241px) and (max-device-360px)" href="android360.css" type="text/css" />
  /*480px的宽度*/
  <link rel="stylesheet" media="only screen and (min-device-361px) and (max-device-480px)" href="android480.css" type="text/css" />
我们可以使用media query为android手机在不同分辨率提供特定样式,这样就可以解决屏幕分辨率的不同给android手机的页面重构问题。

not关键字

   <link rel="stylesheet" media="not print and (max- 1200px)" href="print.css" type="text/css" />
not关键字是用来排除某种制定的媒体类型,换句话来说就是用于排除符合表达式的设备。

only关键字

 <link rel="stylesheet" media="only screen and (max-device-240px)" href="android240.css" type="text/css" />

only用来定某种特定的媒体类型,可以用来排除不支持媒体查询的浏览器。其实only很多时候是用来对那些不支持Media Query但却支持Media Type的设备隐藏样式表的。

其主要有:支持媒体特性(Media Queries)的设备,正常调用样式,此时就当only不存在;对于不支持媒体特性(Media Queries)但又支持媒体类型(Media Type)的设备,这样就会不读了样式,
因为其先读only而不是screen;另外不支持Media Qqueries的浏览器,不论是否支持only,样式都不会被采用。

其他

在Media Query中如果没有明确指定Media Type,那么其默认为all,如:
  <link rel="stylesheet" media="(min- 701px) and (max- 900px)" href="medium.css" type="text/css" />
另外还有使用逗号(,)被用来表示并列或者表示或,如下
  <link rel="stylesheet" type="text/css" href="style.css" media="handheld and (max-480px), screen and (min-960px)" />
上面代码中style.css样式被用在宽度小于或等于480px的手持设备上,或者被用于屏幕宽度大于或等于960px的设备上。

设备屏幕的输出宽度Device Width

<link rel="stylesheet" media="screen and (max-device- 480px)" href="iphone.css" type="text/css" />
上面的代码指的是iphone.css样式适用于最大设备宽度为480px,比如说iPhone上的显示,这里的max-device-width所指的是设备的实际分辨率,也就是指可视面积分辨率

多个Media Queries使用

<link rel="stylesheet" media="screen and (min-600px) and (max-900px)" href="style.css" type="text/css" />
Media Query可以结合多个媒体查询,换句话说,一个Media Query可以包含0到多个表达式,表达式又可以包含0到多个关键字,以及一种Media Type。
正如上面的其表示的是当屏幕在600px-900px之间时采用style.css样式来渲染web页面。

一、最大宽度Max Width

<link rel="stylesheet" media="screen and (max-600px)" href="small.css" type="text/css" />
上面表示的是:当屏幕小于或等于600px时,将采用small.css样式来渲染Web页面。

@media引入

这种引入方式和@import是一样的,也有两种方式:

样式文件中使用:

  1. @media screen{
  2. 选择器{
  3. 属性:属性值;
  4. }
  5. }

在<head>>/head>中的<style>…</style>中调用:

  1. <head>
  2. <style type="text/css">
  3. @media screen{
  4. 选择器{
  5. 属性:属性值;
  6. }
  7. }
  8. </style>
  9. </head>

@import方式引入

@import引入有两种方式,一种是在样式文件中通过@import调用别一个样式文件;另一种方法是在<head></head>中的<style>…</style>中引入,单这种使用方法在ie6-7都不被支持 如

样式文件中调用另一个样式文件:

  1. @import url("css/reset.css") screen;
  2. @import url("css/print.css") print;

在<head></head>中的<style>…</style>中调用:

  1. <head>
  2. <style type="text/css">
  3. @import url("css/style.css") all;
  4. </style>
  5. </head>

xml方式引入

  1. <?xml-stylesheet rel="stylesheet" media="screen" href="css/style.css" ?>

link方法引入

  1. <link rel="stylesheet" type="text/css" href="../css/print.css" media="print" />
原文地址:https://www.cnblogs.com/xl900912/p/4310530.html