0

我正在尝试使用 iframe 将一个网站放入另一个网站上的页面。我已经设法加载到页面。但是我需要页面内的站点加载到网站的高度。而不是它所在的网站页面。

目前,如果我将高度设置为 100%,它只会显示网站的一部分,因为这是页面上唯一的内容。我不想做的是将嵌入网站的高度设置为 4000 像素,因为某些页面只会显示几张图像或几行文本。

我只是想知道这是可能的。

代码到 iframe -

<iframe src="http://example.com" width="100%" height="100%" frameborder="0" scrolling="no"></iframe>

反对的代码 -

<object data="http://example.com" type="text/html" height="100%" width="1024px"></object>
4

1 回答 1

0

你可以:

iframe {
position:absolute;
top:0px;
bottom:0px;
left:0px;
right:0px;
overflow:auto; /* coz you need vertical and horizontal scrollbars */
}

如果没有 iframe 父级的位置不是静态的(这是默认值),这将起作用

你可能也需要body {margin:0px; padding:0px;}

于 2013-03-07T23:59:28.363 回答