縦に分割するフレームを作る
・<frameset rows="上のウインドウの幅,下のウインドウの幅">・<frame src="上に表示するファイル">
・<frame src="下に表示するファイル>
・</frameset>
上下に分割するフレームを作るには<frameset>タグにcols属性をつけて上下のウインドウの幅を指定します。
ソース例(太字が学んだ内容です)
<html>
<head>
<title>縦に分割するフレームを作る</title>
</head>
<frameset rows="20%,80%">
<frame src="top1.html">
<frame src="bottom1.html">
</frameset>
</html>
表示はこちら
2006年04月28日
