英[fre?m]? ?美[frem]??
n.框架;邊框;眼鏡框;組織
vt.陷害;設(shè)計;表達;使適合(某一特殊用途)
adj.有木架的,有架構(gòu)的
第三人稱單數(shù): frames 複數(shù): frames 現(xiàn)在分詞: framing 過去式: framed 過去分詞: framed
html frame標籤 語法
作用:定義 frameset 中的一個特定的視窗(框架)。
說明:frameset 中的每個框架都可以設(shè)定不同的屬性,例如 border、scrolling、noresize 等等。
註解:如果您希望驗證包含框架的頁面,請確保 doctype 被設(shè)定為 "Frameset DTD"。您不能與 <frameset></frameset> 標籤一起使用 <body></body> 標籤。不過,如果您需要為不支援框架的瀏覽器添加一個 <noframes> 標籤,請務(wù)必將此標籤放置在 <body></body> 標籤中!
html frame標籤 範例
<html> <frameset cols="25%,50%,25%"> <frame src="http://miracleart.cn/example/html/frame_a.html"> <frame src="http://miracleart.cn/example/html/frame_b.html"> <frame src="http://miracleart.cn/example/html/frame_c.html"> </frameset> </html>