赞
踩
/*1.屏幕宽度在300px以上的样式*/
@media screen and (min-width:300px){
}
/*2.屏幕宽度在600px以下的样式*/
@media screen and (max-width:600px){
}
/*3.屏幕宽度在300px以上,600px以下的样式*/
@media screen and (min-width:300px) and (max-width:600px){
}
(min-width:300px) => 屏幕宽度>300px时
(max-width:30
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。