Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想为响应式 csss 制作媒体查询条件..
@media (max-width: 480px) and (max-width:640px)
请让我知道这是正确的语法,因为这不满足条件。
使用下面的。
@media screen and (max-width: 480px), screen and (max-height: xxxpx) { Your CSS }
您还可以阅读以下内容以进一步了解。
http://www.w3.org/TR/css3-mediaqueries/#media0
PS:xxxpx 是一个虚拟值,您可以在其中输入值。