Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 html 页面上有两个 iframe,每个 iframe 的高度为 45%。如何在每个 iframe(简单文本)上方添加一个标题,并在第一个 iframe 和第二个标题之间添加一个空格,以便它们消耗 10%。换句话说,我没有什么右边的滚动条。
use scrolling="no"
<iframe scrolling="no"></iframe>
see jsfiddle
要创建一个小的单行空间,请放置一个<br>标签,它也不需要关闭标签,例如</br>不需要!
<br>
</br>
对于一个小标题,只需放置<h1>tile name here</h1>另一个<h2>title</h2>
<h1>tile name here</h1>
<h2>title</h2>