我正在尝试将iframe对象嵌入到我的wordpress网站的页面上。我能够嵌入iframe,但是,对象在移动设备上的屏幕上运行。这是我被嵌入的iframe
<div style="display:block;margin:0;padding:0;border:0;outline:0;font-size:10px!important;color:#AAA!important;vertical-align:baseline;background:transparent;width:1000px;">
<iframe frameborder="0" height="1000" scrolling="no" src="https://secure.rightsignature.com/templates/7304f97a-bbbb-4dc7-b48d-6d6a5ac41b5c/template-signer-link/267cd399a88df2a2616ab109b61f7bb5" width="1000"></iframe>
</div>
我尝试用div类包装上面的整个代码:
div class="right-signature"
然后使用我在另一篇论坛文章中找到的以下CSS:
.right-signature {
position: relative;
padding-bottom: 50%;
height: 0;
overflow: hidden;
}
.right-signature iframe {
position: absolute;
top:0;
left: 0;
width: 100%;
height: 100%;
}
但是我没有成功地让它发挥作用。有谁知道我能做些什么才能让它适用于移动设备?
答案 0 :(得分:0)
我想通了......我最终不必添加任何自定义CSS来解决问题。我只需要将iframe宽度从1000px更改为100%。