在html中,可以使用background屬性設定新表格中的背景,只需為表格元素設定「background:屬性值」即可。 background屬性在一個宣告中設定所有的背景屬性,可以設定物件為純色的背景顏色,也可以設定圖片為背景。
本教學操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。
表格的顏色設定非常簡單,跟文字的顏色設定完全一樣。
CSS透過background屬性設定表格的背景;透過color屬性設定表格中文字的顏色。
範例:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { background-color: #ebf5ff; margin: 0px; padding: 4px; text-align: center; } table { background: pink; color: white; } </style> </head> <body> <table border="1"> <tr> <th>NAME</th> <th>AGE</th> <th>NUMBER</th> </tr> <tr> <td rowspan="2">xm</td> <td>10</td> <td>2020</td> </tr> <tr> <td>3</td> <td>2021</td> </tr> <tr> <td>xf</td> <td>4</td> <td>2010</td> </tr> </table> </body> </html>
效果:
#推薦學習:html影片教學
#以上是HTML中新表格怎麼加背景的詳細內容。更多資訊請關注PHP中文網其他相關文章!