2013-10-08 32 views

回答

0

我不明白如何以及为什么你的媒体查询是特定的,他们只涵盖提到的设备。

更好的方法是使用远程媒体查询,例如,取自自举:

/* Large desktop */ 
@media (min-width: 1200px) { ... } 
/* Portrait tablet to landscape and desktop */ 
@media (min-width: 768px) and (max-width: 979px) { ... } 
/* Landscape phone to portrait tablet */ 
@media (max-width: 767px) { ... } 
/* Landscape phones and down */ 
@media (max-width: 480px) { ... } 
相关问题