(1)在link中使用@media:
<link rel="stylesheet" type="text/css" media="screen and (max-
600px)"href="link.css"/>
(2)在样式表中内嵌@media:
@media screen and (max- 600px) {
选择器{
属性:属性值;
}
}
//max- 600px指屏幕宽度最大为600px;
(1)在link中使用@media:
<link rel="stylesheet" type="text/css" media="screen and (max-
600px)"href="link.css"/>
(2)在样式表中内嵌@media:
@media screen and (max- 600px) {
选择器{
属性:属性值;
}
}
//max- 600px指屏幕宽度最大为600px;