首页 > 代码库 > 媒体查询

媒体查询

(1)在link中使用@media:
<link rel="stylesheet" type="text/css" media="screen and (max-width:
600px)"href="http://www.mamicode.com/link.css"/>
(2)在样式表中内嵌@media:
@media screen and (max-width: 600px) {
选择器{
属性:属性值;
}
}

//max-width: 600px指屏幕宽度最大为600px;

 

媒体查询