画面を分割



0   名前: あい : 2006/06/22(木) 18:56  ID:OeJpQ92e
画面(ページ)を上下に分けたいのですが、
<frameset rows="50%, 50%>
</frameset>
で何も変わりません。
分割して表示するためには表示されるためのページを作り、<frame src="">を使うしかないのでしょうか?

1   名前: カヅサツ : 2006/06/22(木) 18:56  [URL]  ID:O5hEMlpW
その通りです。

2   名前: あい : 2006/06/22(木) 18:56  ID:OeJpQ92e
では、一つのページだけでは分割表示は出来ないということですね。
お返事ありがとうございました。

3   名前: ????? : 2006/06/22(木) 18:56  ID:dKrkQCiF
例えば、
<DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
          "http://www.w3.org/TR/html4/frameset.dtd">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=Shift_Jis">
<title> FRAME-SAMPLE </title>
</head>

<frameset cols="30%,70%" bordercolor="#7e8285">
 <frameset rows="200,300" bordercolor="#7e8285">
  <frame src=" ./sample01.html " name=" no.1" >
  <frame src=" ./sample02.html " name=" no.2" >
 </frameset>
  <frame src=" ./sample03.html " name=" no.3" >
 <noframes>
<body>
 |
   このページはフレームで作成されています、フレーム対応ブラウザでご覧下さい。
   <h1> ◇◇◇◇◇案内 </h1>
   <ul>
    <li><a href="▽▽▽.html target="no.3"> ILLUSTRATIONS </a></li>
    <li>><a href="▼▼▼.html target="no.3"> 画像掲示板 </a></li>
   </ul>
 |
</body>
 </noframes>
</frameset>
</html>
こんな感じですか。

一覧へ戻る