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.
我已经为 ipad 横向和纵向编写了一些媒体查询。但是,当我通过在不同浏览器中更改正文背景颜色来检查媒体查询的功能时,Firefox 和 Opera 中没有发生任何事情。谁能告诉我一个解决方案。???
您必须在@media 屏幕“和 () 和 ()”之间添加空格。然后它对我有用。
所以:
是的:
@media screen and (min-width:769px) and (max-width:1024px) { }
不:
@media screen and(min-width:769px)and(max-width:1024px) { }