标签:
(1)在link中使用@media:
<link rel="stylesheet" type="text/css" media="screen and (max-width:
600px)"href="link.css"/>
(2)在样式表中内嵌@media:
@media screen and (max-width: 600px) {
选择器{
属性:属性值;
}
}
//max-width: 600px指屏幕宽度最大为600px;
标签:
原文地址:http://www.cnblogs.com/nc-blog/p/4220589.html