<frame src="" noresize> ブラウザ 分類 空要素 要素 frame要素 frame要素に noresize を追加すると、フレームのサイズ変更(境界線の移動)を禁止することができます。 <frame src="example.html" noresize> 属性 値 説明 noresize 値は不要 サイズの変更を禁止する 使用例 以下の例では、2本ある境界線のうち右側の境界線を動かせなくしています。 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <html> <head> <title>文書のタイトル</title> </head> <frameset cols="200,*,200"> <frame src="example_a.html"> <frame src="example_b.html"> <frame src="example_a.html" noresize> <noframes> <body> <p>フレームの代替内容</p> </body> </noframes> </frameset> </html> 表示例 サンプル画面へ