如何选择以下媒体查询的相反内容?
@media only screen and (-webkit-min-device-pixel-ratio: 2) { }
几乎就像我说的那样(当然是伪代码)
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
....
} else {
....
}
答案 0 :(得分:0)
您可以使用not
@media not screen and (-webkit-min-device-pixel-ratio: 2) { ... }