HTML <iframe> 标签的 scrolling 属性

HTML <iframe> 标签HTML <iframe> 标签

scrolling 属性规定是否在 iframe 中显示滚动条。

默认地,如果内容超出了 iframe,滚动条就会出现在 iframe 中。

 

. 语法

<iframe scrolling="value">

属性值

描述
auto 在需要的情况下出现滚动条(默认值)。
yes 始终显示滚动条(即使不需要)。
no 从不显示滚动条(即使需要)。

 

. 范例

带有滚动条的 iframe:

<iframe src ="/index.html" scrolling="yes">
<p>Your browser does not support iframes.</p>
</iframe>

我要试一试

HTML <iframe> 标签HTML <iframe> 标签

HTML <iframe> 标签的 seamless 属性:seamless 属性属于逻辑属性。当设置该属性后,它规定了 <iframe> 看上去像是包含文档的一部分(无边框或滚动条)。