Wordpress中的iFrame仅显示在Safari中

时间:2016-07-07 07:43:04

标签: wordpress

任何人都可以告诉我,为什么我的iFrame仅在我使用Safari时可见?您可以在此处查看该网站:http://www.jak.as/job-hos-jak/

iFrame的代码。

<div id="c258" class="csc-default" style="color: #ffffff;">
<div class="tx-ffiframe-pi1" style="font-style: inherit;">
<iframe id="hr-manager" style="font-style: inherit;" src="https://candidate.hr-manager.net/vacancies/list.aspx?departmentId=1321&customer=ndi_dk"
width="100%" height="auto" frameborder="0" scrolling="no"></iframe>
</div>
</div>

1 个答案:

答案 0 :(得分:1)

在检查附加到<iframe>的内容时,您有一个内联样式,如下所示:

iframe {
    visibility: hidden;
    opacity: 0;
}

这导致隐藏iframe。在iframe代码中撤消这些值会使其显示。

<div id="c258" class="csc-default" style="color: #ffffff;">
<div class="tx-ffiframe-pi1" style="font-style: inherit;">
<iframe id="hr-manager" style="visibility:visible; opacity:1; font-style: inherit;" src="https://candidate.hr-manager.net/vacancies/list.aspx?departmentId=1321&customer=ndi_dk"
width="100%" height="auto" frameborder="0" scrolling="no"></iframe>
</div>
</div>