最新的Web開發教程
 

HTML <iframe> scrolling Attribute

<HTML <iframe>標記

一個<iframe>的滾動條:

<iframe src="/default.html" width="200" height="200" scrolling="yes">
</iframe>
試一試»

定義和用法

<iframe> scrolling屬性不是HTML5的支持。 使用CSS來代替。

scrolling屬性指定是否要顯示在滾動條<iframe>

通常,滾動條出現在一個<iframe>當含量比大<iframe>


瀏覽器支持

屬性
scrolling

scrolling屬性是不鼓勵的,但在所有的主流瀏覽器仍然支持。


句法

<iframe scrolling="auto|yes|no">

屬性值

描述
auto 如果需要,出現滾動條(默認)。
yes 滾動條一直顯示(即使不需要它們)
no 滾動條從不顯示(即使在需要的時候)

<HTML <iframe>標記