嵌入对象标签中的自动高度

时间:2017-06-19 04:24:42

标签: javascript html css html5

我想自动将高度调整为其提取的网站内容。我也尝试过iframe。我已经阅读并尝试了来自这里的CSS代码示例 A LOT ,CSS和JS脚本,但没有任何帮助。

先谢谢丹。

这是我的代码。

<object type="text/html" data="https://iloapp.learningknots.com/blog/blog?Home#niceURL" style="width:850px; height:2100px;">
<embed src="https://iloapp.learningknots.com/blog/blog?Home#niceURL"></embed>
Error: Embedded data could not be displayed.</object>

您可以在我的网站上看到它的样子:my website

1 个答案:

答案 0 :(得分:0)

div 作为容器,giv id &#39>。

<强> HTML

<div class="responsive-object">
  <object id="objid" type="text/html" data="https://iloapp.learningknots.com/blog/blog?Home#niceURL">
    <embed id="thissite" src="https://iloapp.learningknots.com/blog/blog?Home#niceURL"></embed>
    Error: Embedded data could not be displayed.</object>
</div>

<强> CSS

.responsive-object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#thissite {
  height: 100%;
  width: 100%;
}

#objid {
  height: 100%;
  width: 100%;
}

<强>小提琴

&#13;
&#13;
.responsive-object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#thissite {
  height: 100%;
  width: 100%;
}

#objid {
  height: 100%;
  width: 100%;
}
&#13;
<div class="responsive-object">
  <object id="objid" type="text/html" data="https://iloapp.learningknots.com/blog/blog?Home#niceURL">
    <embed id="thissite" src="https://iloapp.learningknots.com/blog/blog?Home#niceURL"></embed>
    Error: Embedded data could not be displayed.</object>
</div>
&#13;
&#13;
&#13;