微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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.jb51.cc/html/226438.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐