HTML <iframe> 标签的 height 属性
height 属性规定 iframe 的高度。
1. 语法
<iframe height="value">
属性值
值 | 描述 |
---|---|
pixels | 以像素计的高度值(比如 "100px")。 |
percent | 以包含元素百分比计的高度值(比如 "20%")。 |
2. 范例
带有带有制定高度和宽度的 iframe:
<iframe src ="/index.html" width="400" height="300"> <p>Your browser does not support iframes.</p> </iframe>
HTML <iframe> 标签的 longdesc 属性:longdesc 属性规定指向某个页面的 URL,该页面包含了有关 iframe 的较长描述。由于浏览器对 longdesc 属性的支持性非常差,没有必要使用该属性。