二段組にする |
Internet Explorer | Netscape Navigator | iCab | Safari | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3.0x | 4.0x | 4.5 | 5.0x | 5.5 | 6.0 | 2.0x | 3.0x | 4.0x | 4.x | 6.0 | 7.0 | 2.x | 1.x | |
Windows | × | ○ | - | ○ | ○ | ○ | × | × | × | × | ○ | ○ | - | - |
Macintosh | × | ○ | ○ | ○ | - | - | × | × | × | × | ○ | ○ | × | ○ |
UNIX | - | - | - | - | - | - | × | × | × | × | ○ | ○ | - | - |
Dreamcast | - | - | - | - | - | - | - | - | - | - | - | - |
ポイント | .left { float:left; } .right { float:right; } |
---|---|
説 明 | 二段組にするにはfloatプロパティを使います。左側に表示する段にはfloat:left、右側に表示する段にはfloat:rightを指定します。 |
サンプル | <html> <head> <title>二段組にする</title> <style type="text/css"><!-- .left { float:left; width:48%; background-color:yellow; border:1px red solid; } .right { float:right; width:48%; background-color:yellow; border:1px red solid; } --></style> </head> <body> 二段組みにします。<br> <br> <div class="left"> ここの文章はdivタグとスタイルシートを使って二段組になるように設定しています。 </div> <div class="right"> ここの文章はdivタグとスタイルシートを使って二段組になるように設定しています。 </div> </body> </html> |
補足説明 | Opera 7でも正しく動作します。 |
■サンプルを実行する >>実行 ■各ブラウザでの動作結果を見る >>View! |