css3媒体查询无法在Firefox和Opera中工作

时间:2013-08-28 14:08:07

标签: css3

我已经为ipad landscape和portrait写了一些媒体查询。但是当我通过改变不同浏览器中的主体背景颜色来检查媒体查询的功能时,firefox和opera中没有任何事情发生。任何人都可以告诉我一个解决方案。???

1 个答案:

答案 0 :(得分:0)

您必须在@media屏幕'和()以及()之间添加空格。然后它适合我。

所以:

是:

@media screen and (min-width:769px) and (max-width:1024px) { }

否:

@media screen and(min-width:769px)and(max-width:1024px) { }