HTML <iframe>滾動屬性用於指定是否在<Iframe>元素中顯示滾動條。本質上,當內容大於Iframe元素時使用滾動條。
用法
<iframe scrolling="auto | yes | no">
屬性值
- auto:它具有默認值。滾動條在需要時出現。
- yes:該值顯示Iframe元素中的滾動條。
- no:該值不會在Iframe元素中顯示滾動條。
例:
<!DOCTYPE html>
<html>
<body>
<h1>
GeeksForGeeks
</h1>
<h2>
HTML Iframe scrolling Attribute
</h2>
<p>Content goes here</p>
<iframe src="https://ide.geeksforgeeks.org/tryit.php"
height="300"
width="400"
marginwidth="50"
scrolling="no">
</iframe>
</body>
</html>
輸出:
支持的瀏覽器:下麵列出了HTML <iframe>滾動屬性支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- Firefox
- 蘋果Safari
- Opera
相關用法
- HTML <frame> scrolling屬性用法及代碼示例
- HTML <img> src屬性用法及代碼示例
- HTML max屬性用法及代碼示例
- HTML <a> rel屬性用法及代碼示例
- HTML value屬性用法及代碼示例
- HTML <bdo> dir屬性用法及代碼示例
- HTML for屬性用法及代碼示例
- HTML low屬性用法及代碼示例
- HTML <li> value屬性用法及代碼示例
- HTML name屬性用法及代碼示例
注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <iframe> scrolling Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。