我使用媒体查询的 CSS 无法正确检测设备...我的代码:
@media screen and (min-width: 240px) and (max-width: 320px) {
#test{
width:50px;
height:50px;
background-color:blue;
}
}
@media screen and (min-width: 640px) {
#test{
width:50px;
height:50px;
background-color:red;
}
}
我希望 div 在 HTC Wildfire 等小型手机上为蓝色,在 iPad Mini 等平板电脑上为红色。