1

据我了解,表格可以像其他元素一样具有 webkit 边框半径样式:

HTML

<table class="list-table">
    <thead>
        <tr>
            <th>header</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>tables are misunderstood</td>
        </tr>
    </tbody>
</table>

CSS

.list-table {
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
    vertical-align: middle;
    border: 4px solid red;
    border-collapse: collapse;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

...那我哪里错了?在这里查看现场演示:http ://bootply.com/79469#

4

3 回答 3

4

摆脱border-collapse: collapse;规则。

jsFiddle 示例

于 2013-09-06T18:50:54.507 回答
0
.list-table {
    border-collapse: separate;
    border-spacing: 0;
    border: 4px solid red;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

jsFiddle

于 2013-09-06T18:51:16.840 回答
0

将您的表格放在一个 div 中,并在 div 而不是表格上做您的边框半径

http://bootply.com/79471

    div {
    border: 4px solid red;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    }
于 2013-09-06T19:04:38.617 回答