我已经在Chrome和Firefox中对此进行了测试。我尝试在我的桌子上做一个略微圆润的边缘,我不明白为什么border-radius
命令不起作用。
这里是jfiddle:
当我使用CTRL+SHIFT+I
查看计算出的样式时,我看到此元素有
border-radius: 20px;
勾选,但取消选择它不会改变表格的显示。
我需要做什么才能使其发挥作用?
以下是代码:
#bp-table {
font-family: Century Gothic, sans-serif;
font-size: 11px;
margin: 15px;
width: 99%;
max-width: 99%;
border-radius: 20px;
border-collapse: collapse;
}
#bp-table th {
font-size: 11px;
font-weight: 700;
text-align: left;
padding: 8px;
background: rgb(60, 55, 88);
color: #ffffff;
}
#bp-table td {
padding: 8px;
background: #e8edff;
text-align: left;
border-bottom: 1px solid #fff;
border-top: 1px solid transparent;
}
#bp-table tr:hover td {
background: #f0d3d3;
color: #1e1e5b;
}

<table id="bp-table">
<thead>
<th>A</th>
<th>B</th>
<th>C</th>
<th>D</th>
<th>E</th>
</thead>
<tbody>
<td>one</td>
<td>one</td>
<td>one</td>
<td>one</td>
<td>one</td>
</tbody>
</table>
&#13;
答案 0 :(得分:6)