iframe只在firefox中加载

Pra*_*V P 7 html css iframe firefox cross-browser

iframe的内容在chrome中运行良好,但在firefox中运行不正常.我已禁用加载项,但我的iframe仍为空.我的网站和iframe都是https.

以下是代码:

  <p><iframe class="display:inline-block;" frameborder="0" height="2622px" scrolling="no" src="https://www.emolument.com/start" width="100%"></iframe></p>  
Run Code Online (Sandbox Code Playgroud)

Dav*_*vey 2

尝试:

<p><iframe style="display:inline-block; height: 2622px" frameborder="0" scrolling="no" src="https://www.emolument.com/start" width="100%"></iframe></p>

更正了 style 属性并将 height 声明为 css 而不是 height 属性。

顺便说一句,高度属性不应包含“px”。