iFrame and media query issue

后端 未结 1 1613
一整个雨季
一整个雨季 2020-12-21 15:18

I have an issue with the styles inside media queries for the content inside iFrame. I have an iFrame embedded in our site. We have styles for the contents inside iFrame. My

相关标签:
1条回答
  • 2020-12-21 15:46

    The iframe width is also dependent on the viewport, so try setting something like this:

    <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0;" />
    

    Furthermore, if you want to target a particular device like an ipad, and you have content in an iframe you might consider using min-device-width to determine if your iframe is within a particular device.

    0 讨论(0)
提交回复
热议问题