我在用着
@media only screen and (min-width:320px) and (max-width:480px) {
#hello { background:red;}
}
和
@media only screen and (min-width:481px) and (max-width:600px) {
#hello { background:green;}
}
我使用http://mattkersley.com/responsive/来测试我的网站,当我检查 320x480 时,媒体查询不起作用。
有任何想法吗?
我也在使用这个http://codebomber.com/jquery/resizer/并遇到同样的问题。
min-width:320px 意味着视口必须至少为 320px 或更宽,对吧?