html frame標籤用來定義frameset中的一個特定的視窗(框架),frameset中的每個框架都可以設定不同的屬性,例如border、scrolling、noresize等等。
html frame標籤怎麼用?
作用:定義 frameset 中的一個特定的視窗(框架)。
說明:frameset 中的每個框架都可以設定不同的屬性,例如 border、scrolling、noresize 等等。
註解:
如果您希望驗證包含框架的頁面,請確保 doctype 被設定為 "Frameset DTD"。您不能與
標籤一起使用 標籤。不過,如果您需要為不支援框架的瀏覽器添加一個html frame標籤 範例
<html> <frameset cols="25%,50%,25%"> <frame src="http://www.php.cn/example/html/frame_a.html"> <frame src="http://www.php.cn/example/html/frame_b.html"> <frame src="http://www.php.cn/example/html/frame_c.html"> </frameset> </html>
以上是html frame標籤怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!