我找不到匹配的答案。
超文本:
<table class="table1">
<tr>
<td class="red header" colspan="4">
Table1 header</td>
</tr>
...
<tr>
<td class="red footer" colspan="4">Footer</td>
</tr>
</table>
<table class="table2">
<tr>
<td class="red header" colspan="4">
Table2 header</td>
</tr>
...
<tr>
<td class="red footer" colspan="4">Footer</td>
</tr>
</table>
CSS:
table {
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
border: 1px solid #000;
}
.table1 {
border-spacing: 0;
}
.table2 {
border-collapse: collapse;
}
.footer {
-moz-border-bottom-right-radius: 5px;
-webkit-border-bottom-right-radius: 5px;
border-bottom-right-radius: 5px;
-moz-border-bottom-left-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
border-bottom-left-radius: 5px;
}
.header {
-moz-border-top-right-radius: 5px;
-webkit-border-top-right-radius: 5px;
border-bottom-top-radius: 5px;
-moz-border-top-left-radius: 5px;
-webkit-border-top-left-radius: 5px;
border-top-left-radius: 5px;
text-align: center;
}
td {
border: 1px solid #000;
}
http://jsfiddle.net/uXUnm/
如你所见,table1
有2px边框(我喜欢1px),table2
没有圆角边框。border-collapse:collapse;
修复了border-spacing: 0;
引起的第一个问题,但打破了圆角。谁能告诉我一个方法来修复这两个问题,而不弄乱:first-child
,last-child
等选择器?
1条答案
按热度按时间5lhxktic1#
这里是我的固定css:
您可以设置边界半径:5 px;任何值和它将完美地工作!