CSS border-spacingで背景色を指定してテーブルを作成する
環境
Google Chrome 106.0.5249.119
Windows 10 Home 64bit
構文
table {
background: 色;
border-spacing: 1px;
}
テーブルの背景色に色を指定します。
td {
background: white;
}
tdに白を指定しています。
border-spacing : 値
テーブルの枠線の上下左右を指定します。
使用例
<!DOCTYPE html> <html> <head> <style> table { border-collapse: separate; border-spacing: 1px; width: 100px; background: skyblue;/* tableの背景所にskyblueを指定*/ } td { background: white; /*tdに白を指定*/ } </style> </head> <body> <table> <tr> <td>1001</td> <td>tokyo</td> </tr> <tr> <td>2002</td> <td>oosaka</td> </tr> </table> </body> </html>
結果
テーブルの背景色をskyblueに表示します