删除一些iframe的src内容

Nic*_*ndo 8 html css iframe

我想使用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> 
Run Code Online (Sandbox Code Playgroud)

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

Nic*_*ndo 16

我想出了如何使用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>
Run Code Online (Sandbox Code Playgroud)