HTML iframe tag 語法教學 (含 HTML5 差異)
圖片來源:http://www.cot-cot.net/html-iframe-example-and-tutorial/
每次要用 iframe 時都忘記語法,這邊稍微記錄一下。
<iframe src="欲插入的網頁網址" width="500" height="500" scrolling="yes" align="center" frameborder="1"> </iframe>
語法說明:
- src:欲插入的網頁網址,可用絕對或相對路徑
- width、height:iframe 的寬度與高度設定值 (建議至少設定一個)
- scrolling:網頁長寬超過 iframe 長寬時是否需要產生捲軸(yes, no, auto)
Not supported in HTML5. Deprecated in HTML 4.01. - align:對齊方式 (不一定要設)
Not supported in HTML5. - frameborder:有沒有邊框,預設為有
Not supported in HTML5.
關鍵字:HTML, iframe, tag, HTML5, 語法, 教學, 參數, 捲軸, 寬度, 高度, 範例
參考資料: