テーブルの枠の色を変化させる

動作ブラウザ
Internet Explorer Netscape Navigator
4.0x 4.5 5.0x 5.5 6.0 4.x 6.0
Windows - × ×
Macintosh - - × ×
UNIX - - - - - × ×

解  説  テーブルの枠の色を変化させるにはtableタグのスタイルのborderColorプロパティにカラー名またはカラーコードを設定します。
コード <html> <head> <title>テーブルの枠の色を変化させる</title> </head> <body> <table border="2" onmouseover="this.style.borderColor='red'" onmouseout="this.style.borderColor='black'"> <tr><th>商品名</th><th>価格</th></tr> <tr><td>うに丼</td><td>2500円</td></tr> </table> </body> </html>

■サンプルスクリプトを実行する >>実行
■各ブラウザでの動作結果を見る >>View!