html – 删除一些iframe的src内容

前端之家收集整理的这篇文章主要介绍了html – 删除一些iframe的src内容前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用iframe在我的网站上显示页面内容,但我想“剪掉”页面标题(顶部)部分,省略其导航栏,因此用户只能看到它下面的内容.

码:

<div id="content">
    <div style="height:800px;">
        <iframe id="optomaFeed" src="http://www.optomausa.com/company/press-releases/" scrolling="auto"
            frameborder="0" height="100%" width="100%"></iframe>
    </div>
</div>

我有什么办法可以做到这一点? Tyvm〜

解决方法

我想出了如何使用css clip属性来做到这一点:
<div id="content">
    <div style="height:800px;">
        <iframe id="optomaFeed" src="http://www.optomausa.com/company/press-releases/" scrolling="no"
            frameborder="0" height="100%" width="100%" style="position:absolute; clip:rect(190px,1100px,800px,250px);
            top:-160px; left:-160px;"></iframe>
    </div>
</div>
原文链接:https://www.f2er.com/html/226438.html

猜你在找的HTML相关文章