HTML <iframe> 標(biāo)簽的 scrolling 屬性
定義和用法
scrolling 屬性規(guī)定是否在 iframe 中顯示滾動(dòng)條。
默認(rèn)地,如果內(nèi)容超出了 iframe,滾動(dòng)條就會(huì)出現(xiàn)在 iframe 中。
實(shí)例
帶有滾動(dòng)條的 iframe:
<iframe src ="/index.html" scrolling="yes"
>
<p>Your browser does not support iframes.</p>
</iframe>
語(yǔ)法
<iframe scrolling="value">
屬性值
值 | 描述 |
---|---|
auto | 在需要的情況下出現(xiàn)滾動(dòng)條(默認(rèn)值)。 |
yes | 始終顯示滾動(dòng)條(即使不需要)。 |
no | 從不顯示滾動(dòng)條(即使需要)。 |