表中的圆角

博伊舍利

我需要创建一个包含两列和第一列的表格,单元格只有一个底部边框,第二列中的单元格周围都有边框,顶部和底部都有圆角。我的代码看起来像这样,并且在资源管理器中工作,但在 Firefox 和 Chrome 中,它给了我圆角边框和普通角:

table {
  border-collapse: collapse;
  width: 50%;
  font-family: Proxima Nova, Arial;
}

.h1 {
  /*Head cell red*/
  text-align: center;
  border: 1px solid #D81541;
  border-radius: 20px 20px 0px 0px;
  background-color: #D81541;
  color: white;
  font-size: 1.5em;
  font-weight: bold;
  width: 60%;
}

.td1 {
  /*right column cells*/
  border: 1px solid #6D6E70;
  text-align: left;
  width: 60%;
}

.td2 {
  /*left column cells bold*/
  border-bottom: 1px solid #6D6E70;
  font-weight: bold;
  vertical-align: top;
}

.td3 {
  /*last cell right column*/
  border: 1px solid #6D6E70;
  border-radius: 0px 0px 20px 20px;
  text-align: left;
  width: 60%;
}

.td4 {
  /*last cell left column*/
  vertical-align: top;
  font-weight: bold;
}
<table>
  <tr>
    <td class="td2"></td>
    <td class="h1">My top corners should be round</td>
  </tr>
  <tr>
    <td class="td2">bla</td>
    <td class="td1">blabla</td>
  </tr>
  <tr>
    <td class="td4">last row</td>
    <td class="td3">my bottom corners should be round</td>
  </tr>
</table>

在此处输入图片说明

BehradKhodayar

只需border-collapse: collapse;从中删除.table并添加border-spacing:0到它

检查片段。感谢@Abhitalks 为他之前的小提琴。

table {
  border-spacing: 0;
  width: 50%;
  font-family: Proxima Nova, Arial;
}

.h1 {
  /*Head cell red*/
  text-align: center;
  border: 1px solid #D81541;
  border-radius: 20px 20px 0px 0px;
  background-color: #D81541;
  color: white;
  font-size: 1.5em;
  font-weight: bold;
  width: 60%;
}

.td1 {
  /*right column cells*/
  border: 1px solid #6D6E70;
  text-align: left;
  width: 60%;
}

.td2 {
  /*left column cells bold*/
  border-bottom: 1px solid #6D6E70;
  border-top: 1px solid #6D6E70;
  font-weight: bold;
  vertical-align: top;
}

.td3 {
  /*last cell right column*/
  border: 1px solid #6D6E70;
  border-radius: 0px 0px 20px 20px;
  text-align: left;
  width: 60%;
}

.td4 {
  /*last cell left column*/
  vertical-align: top;
  font-weight: bold;
  border-top: 1px solid #6D6E70;
}
.td5 {
  /*left column  first cells*/
  border-bottom: 1px solid #6D6E70;
  font-weight: bold;
  vertical-align: top;
}
<table>
  <tr>
    <td class="td5"></td>
    <td class="h1">My top corners should be round</td>
  </tr>
  <tr>
    <td class="td2">bla</td>
    <td class="td1">blabla</td>
  </tr>
  <tr>
    <td class="td4">last row</td>
    <td class="td3">my bottom corners should be round</td>
  </tr>
</table>

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章