在html中,scrolling的中文意思是「滾動」;它是iframe標籤的一個屬性,用來規定是否在iframe中顯示滾動條,語法格式「
本教學操作環境:windows7系統、HTML5版、Dell G3電腦。
HTML
##scrolling 屬性規定是否在 iframe 中顯示捲軸。預設地,如果內容超出了 iframe,捲軸就會出現在 iframe 中。 語法格式:<iframe scrolling="value">
描述 | |
---|---|
在需要的情況下出現捲軸(預設值)。 | |
總是顯示捲軸(即使不需要)。 | |
從不顯示捲軸(即使需要)。 |
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <p>显示滚动条的 iframe:</p> <iframe src="https://www.php.cn" width="200" height="200" scrolling="yes"> <p>您的浏览器不支持 iframe 标签。</p> </iframe> <p>没有滚动条的 iframe :</p> <iframe src="https://www.php.cn" width="200" height="200" scrolling="no"> <p>您的浏览器不支持 iframe 标签。</p> </iframe> </body> </html>
html影片教學》
以上是html中scrolling是什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!