是否可以在 Chrome 媒体查询中使用rem
单位?
rem
单位在 Chrome 中完美运行,似乎媒体查询不支持它们。这可能吗?或者这个CSS还有其他问题吗?
body { background-color: yellow; }
@media only all and (max-width: 40rem) {
body { background-color: red; }
}
@media only all and (min-width: 40rem) and (max-width: 60rem) {
body {background-color: green;}
}
@media only all and (min-width: 60rem) {
body { background-color: blue; }
}
生活在http://jsfiddle.net/jsQ2N/2/show/,em
-只有版本在http://jsfiddle.net/jsQ2N/3/show/。