Media queries fail inside IE9 iframe

前端 未结 5 1597
小蘑菇
小蘑菇 2020-12-14 18:33

I have the following media queries in my CSS:

@media screen and (min-width: 0px) and (max-width: 319px) {
    body {background-color:red;}
}

@media screen a         


        
5条回答
  •  忘掉有多难
    2020-12-14 19:26

    Had the same Probleme. However I found an easy fix. Using JS to create the iframes I just appended something like ?nocache=Math.random() to the iframe src. That fixed it for me :)

提交回复
热议问题