<frame src="" scrolling=""> ブラウザ 分類 空要素 要素 frame要素 frame要素に scrolling="" を追加すると、スクロールバーの有無を指定することができます。 <frame src="example.html" scrolling="yes"> 属性 値 説明 scrolling="" yes スクロールバーを常に表示する no スクロールバーを常に表示しない auto 必要に応じてスクロールバーを表示する (初期値) 使用例 以下の例では、左のフレームに yes を、右のフレームに no を指定しています。 <!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="50%,50%"> <frame src="example14a.html" scrolling="yes"> <frame src="example14b.html" scrolling="no"> <noframes> <body> <p>フレームの代替内容</p> </body> </noframes> </frameset> </html> 表示例 サンプル画面へ