左右にフレーム分割する

動作ブラウザ 【 IE:3.0  NN:2.0
Internet Explorer Netscape Navigator iCab
3.0x 4.0x 4.5 5.0x 5.5 6.0 2.0x 3.0x 4.0x 4.x 6.0 2.x
Windows - -
Macintosh - -
UNIX - - - - - - -
Dreamcast - - - - - - - - - - -

ポイント <frameset cols="50%,*"> <frame src="0.html"> <frame src="1.html"> </frameset>
説  明 フレーム分割するには分割方法や割合をframesetタグで指定します。左右に分割するにはcols="分割割合"のように指定します。分割割合は10%,*とするとページ全体の10%と残り(*は残りを示す)の割合でページ分割します。10,*とすると10ピクセルのフレームと残りフレームで分割します。分割されたフレーム表示する内容はframeタグのsrc属性で指定します。
サンプル <html> <head> <title>左右にフレーム分割する</title> <frameset cols="50%,*"> <frame src="0.html"> <frame src="1.html"> </frameset> </head> </html>
補足説明 なし

■サンプルを実行する >>実行
■各ブラウザでの動作結果を見る >>View!