VStudio ASP.NET提供以下消息:
Attribute 'bgcolor' is considered outdated. A newer construct is recommended.
推荐的构造是什么?
bgcolor
位于<td>
元素内
另一个相关的信息是:
Attribute 'bordercolor' is not a valid attribute of element 'table'.
有谁知道我在哪里可以找到更新的替代品?
答案 0 :(得分:21)
较新的网站和Web应用程序使用CSS(层叠样式表)来呈现相同的内容,如下所示:
body {
background-color : #ffffff;
}
对于表格,请执行以下操作:
<table>
<tr id="row1">
<th>Header 1</th> <td>Cell 1</td> <td>Cell 2</td>
</tr>
<tr id="row2">
<th>Header 2</th> <td>Cell 3</td> <td>Cell 4</td>
</tr>
<tr id="row3">
<th>Header 3</th> <td>Cell 5</td> <td>Cell 6</td>
</tr>
</table>
在你的CSS中:
th { text-align: center; font-weight: bold; vertical-align: baseline }
td { vertical-align: middle }
table { border-collapse: collapse; background-color: #ffffff }
tr#row1 { border-top: 3px solid blue }
tr#row2 { border-top: 1px solid black }
tr#row3 { border-top: 1px solid black }
这将使表格具有背景颜色,并对表格数据/表格的其余部分执行不同的操作。
只需将其放在您的样式表中,并将其引用到您的网页上,如下所示:
<link rel="stylesheet" href="style.css" TYPE="text/css" media="screen">
答案 1 :(得分:4)
最佳猜测是CSS的background-color
和border-color
:
<table style="border-color: #ffffff;">
<td style="background-color: #000000;">
答案 2 :(得分:3)
值得注意的是,尽管不像单独的样式部分那样优雅,但现在这样做是有效的,使用内联样式,如果这是你更熟悉的话:
<body style="background-color: #ccc;">
答案 3 :(得分:2)
较新的替代品是级联样式表(CSS)。不推荐使用控制HTML文档可视外观的任何属性或元素。应使用CSS指定视觉样式。
答案 4 :(得分:2)
这样做的推荐方法是使用CSS。您可以为表设置CSS类。像这样:
CSS:
.MyTable {
border: solid 2px #000;
}
.MySpecialCell {
background-color: #F00;
}
HTML:
<table class="MyTable">
<tr>
<td class="MySpecialCell">...</td>
</tr>
</table>