0

我想知道我是否有一个 iframe 窗口并且我在一个 Div 中打开它。但我只想在 div 中显示该 iframe 的固定区域如何使用 css。

看,

我有一个 iframe 窗口

<iframe src="http//www.examplesite.com/" height="200" width ="800"></iframe>

我需要在 div 中打开它。但我的问题是我无法更改 iframe 代码。请不要为此建议我。我只想在 div 中显示 700 宽度和高度 175。你可以说我只想在 div 中显示 iframe 的 3/4 部分。

那可能吗。如果答案是肯定的,那怎么办?

4

1 回答 1

1

也许你可以试试这个

<div style="height:175px;width:700px;overflow:hidden"><iframe src="http//www.yahoo.com/" height="200" width ="800"></iframe></div>
于 2013-05-15T13:45:01.173 回答