我在样式表的底部添加了这个
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
body {
background: #000 !important;
}
}
它在 iphone 上运行良好,但我想通过调整浏览器大小在 ff 或 chrome 中进行测试,它确实添加了样式。我怎样才能让它工作?
我在样式表的底部添加了这个
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
body {
background: #000 !important;
}
}
它在 iphone 上运行良好,但我想通过调整浏览器大小在 ff 或 chrome 中进行测试,它确实添加了样式。我怎样才能让它工作?