1

我正在创建一个表格来显示我所有的主题内容。

我的表格td垂直边框没有出现,下面是css代码。

请帮忙。

table.subjects {
border-width: 1px;
border-spacing: 2px;
border-style: solid;
border-color: gray;
border-collapse: collapse;
background-color: white;}

table.subjects th {
border-width: 1px;
padding: 1px;
border-style: inset;
border-color: gray;
background-color: white;
-moz-border-radius: ;}

table.subjects td {
border-width: 1px;
padding: 1px;
border-style: solid;
border-color: gray;
background-color: white;
-moz-border-radius: ;}
4

2 回答 2

0

你可以使用css类

.tableborder{ 边框:1px 纯灰色;

}

于 2013-04-04T09:32:32.107 回答
0

在 html 中,您应该将 table 属性的边框设置为 1 。你做了吗?这是解决方案:

<table border="1">
于 2013-04-04T06:34:40.590 回答