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