html += "<table width=\"100%\" border=\"1\" cellspacing=\"1\" cellpadding=\"4\" bgcolor=\"#cccccc\" align=\"center\">";设置表格背景无颜色
时间: 2023-09-08 12:16:18 浏览: 223
网页中表格单元改变背景色
要设置表格背景无颜色,可以在table标签中添加style属性,并设置background-color属性为transparent。代码如下:
```html
<table width="100%" border="1" cellspacing="1" cellpadding="4" bgcolor="#cccccc" align="center" style="background-color: transparent;">
<!-- 表格内容 -->
</table>
```
这样就可以将表格的背景颜色设置为透明,即无颜色。
阅读全文