ボタン<button>にスタイルを適用する |
Internet Explorer | Netscape Navigator | iCab | Opera | Safari | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3.0x | 4.0x | 4.5 | 5.0x | 5.5 | 6.0 | 2.0x | 3.0x | 4.x | 6.0 | 7.0 | 2.x | 7.x | 1.x | |
Windows | × | ○ | - | ○ | ○ | ○ | × | × | × | ○ | ○ | - | ||
Macintosh | × | × | × | ○ | - | - | × | × | × | ○ | ○ | × | ○ | × |
UNIX | - | - | - | - | - | - | × | × | × | ○ | ○ | - |
ポイント | .btnCss { width:200px;height:90px; font-size:24px; blue:red;background-color:orange; } |
---|---|
説 明 | フォームのボタンで<button>〜</button>を利用した場合、通常のボタンよりもいろいろなスタイルを指定できます。これは通常のスタイル指定と同じようにclass, ID指定などが可能です。 |
サンプル | <html> <head> <title>フォームのボタン(button)に色を指定する</title> <style type="text/css"><!-- .btnCss { width:200px;height:90px; font-size:24px; blue:red;background-color:orange; } --></style> </head> <body> <form> 文字:<input type="text" value="Sample"><br> <button class="btnCss">サンプルボタン</button> </form> </body> </html> |
補足説明 | なし |
■サンプルを実行する >>実行 ■各ブラウザでの動作結果を見る >>View! |