CSS3 Media Query

通过Media Query 媒体查询可以针对符合相应条件的媒体设置特定的样式。

引入方式

引入媒体查询的方式有两种。

1
<link rel="stylesheet" media="screen and (max-width: 600px)" href="small.css" />

css 中引入

1
2
3
4
5
@media screen and (max-width: 600px) {
选择器 {
属性:属性值;
}
}

常见的 Media Query

media query 参考表

兼容性参考