HTML iframe 標簽的 scrolling 屬性用于控制 iframe 元素中的內容是否可以滾動。
scrolling 屬性有兩個可選值:
scrolling=“yes”:表示內容可以滾動。如果 iframe 中的內容超出了 iframe 的大小,用戶可以通過滾動來查看所有內容。
scrolling=“no”:表示內容不可以滾動。如果 iframe 中的內容超出了 iframe 的大小,用戶無法通過滾動來查看所有內容。
例如,以下代碼將創建一個具有滾動功能的 iframe:
<iframe src="example.html" width="500" height="300" scrolling="yes"></iframe>
在這個例子中,如果 example.html 的內容超出了 500x300 的 iframe 大小,用戶可以通過滾動來查看所有內容。