我已经找了又找,但还是没有找到满足我要求的解决方案。
我有一个普通的 ol’HTML 表。我希望它的圆角,没有使用图像或 JS,即纯 只能用 CSS。像这样:
圆角的角细胞,和 1px
厚边界的细胞。
So far I have this:
table {
-moz-border-radius: 5px !important;
border-collapse: collapse !important;
border: none !important;
}
table th,
table td {
border: none !important
}
table th:first-child {
-moz-border-radius: 5px 0 0 0 !important;
}
table th:last-child {
-moz-border-radius: 0 5px 0 0 !important;
}
table tr:last-child td:first-child {
-moz-border-radius: 0 0 0 5px !important;
}
table tr:last-child td:last-child {
-moz-border-radius: 0 0 5px 0 !important;
}
table tr:hover td {
background-color: #ddd !important
}
但是这样就没有单元格的边框了,如果我添加边框,它们就不是圆的了!
Any solutions?