现在我正在使用这些查询:
/*Desktop and laptops*/
media only screen and (min-width : 1224px)
/*Tablet landscape*/
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape)
/*Tablet Portrait*/
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
我想知道是否应该将第一个查询更改为(min-width : 0px)
如您所见,其他查询仅适用于横向或纵向模式。 因此,如果我在笔记本电脑/台式机上缩小我的屏幕,它就不再使用任何CSS了。
您对此有何看法?