如何将标题 iframe 高度更改为增加值?
Posted
技术标签:
【中文标题】如何将标题 iframe 高度更改为增加值?【英文标题】:How to change header iframe height to increased value? 【发布时间】:2019-02-09 20:27:05 【问题描述】:我正在尝试为标题增加此 iframe 的高度,以便不显示滚动条。我在这里错过了什么?
The header.
来自 index.html:
<header>
<iframe src="header.html" frameborder="0" ></iframe>
</header>
来自 header.html:
<header>
<div style="display: flex; justify-content: center;">
<a href="index.html" target="_parent"><img src="images/$RK6ZV6D.JPG" ></a></div>
来自 main.css:
iframe
overflow: auto;
height: auto;
header
background-color: #fff;
【问题讨论】:
你到底想在这里实现什么? 我试图增加 iframe 的高度,以便显示图像的底部。 好的。您将要从 iframe css 中删除height: auto
,因为您已经在 iframe 属性上定义了 height="270"
是的!我得到了它并从 main.css 中删除了 iframe
并在 index.html 中使用了 <header> <iframe src="header.html" frameborder="0" width="100%" height="240"></iframe> </header>
并为我解决了它。
【参考方案1】:
尝试在页眉上使用边距。它有助于让其他物体靠近或远离其他物体:
p
margin-top: 100px;
margin-bottom: 100px;
margin-right: 150px;
margin-left: 80px;
更多信息请见margins 和iframe。
【讨论】:
啊!没关系!事实证明,我的问题是,由于某种原因,HTML 无法识别 iframe 高度,但不知何故让它正常工作......然后将标题下方的边距设置为略低于 0% 以掩盖白色空间有点。无论如何,谢谢!以上是关于如何将标题 iframe 高度更改为增加值?的主要内容,如果未能解决你的问题,请参考以下文章
在 iframe 内单击按钮时,如何增加 iframe 的高度?
如何使用swift3增加导航栏的高度并更改xcode 8中状态栏的颜色?