通过Media Query 媒体查询可以针对符合相应条件的媒体设置特定的样式。
引入方式
引入媒体查询的方式有两种。
link 方式引入
<link rel="stylesheet" media="screen and (max-width: 600px)" href="small.css" />
css 中引入
@media screen and (max-width: 600px) {
选择器 {
属性:属性值;
}
}
通过Media Query 媒体查询可以针对符合相应条件的媒体设置特定的样式。
引入媒体查询的方式有两种。
<link rel="stylesheet" media="screen and (max-width: 600px)" href="small.css" />
@media screen and (max-width: 600px) {
选择器 {
属性:属性值;
}
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。