1. Home
  2. HTMLタグ
  3. フレームタグ
  4. フレームのサイズを変更させない

フレームのサイズを変更させない


<frame src="" noresize>

ブラウザ
IE
Fx
Sf
Cr
O
分類
空要素
要素
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>

表示例


フレームタグ

ページの先頭へ


inserted by FC2 system