我昨天开始学习HTML5和CSS。今天,我正在学习创建表格并改变它的背景颜色。我试图用CSS改变它但我不能。我怎么能用它来制作它CSS3?
一定是这样的。
答案 0 :(得分:0)
你应该使用背景色 在CSS文件中:
table {
background-color: #00bd72;
}
或在html标签内
<table style="background-color: #00bd72">
...
</table>
查看我刚刚为您制作的这个片段;)祝学习CSS好运
<html>
<body>
<h1>sample table</h1>
<table style="background-color: #00bd72">
<tr>
<td>this is one cell</td>
<td>this is another cell</td>
</tr>
<tr>
<td>this is the second row</td>
<td>blah blah ...</td>
</tr>
</table>
</body>
</html>
答案 1 :(得分:0)
使用此代码
table {
background-color: #ccc;
}