table中给某一个tr设置border-radius无效

发布于 2022-09-13 01:16:27 字数 1135 浏览 12 评论 0

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
    table{
      border:solid 1px #ddd;
    }
    th{
      border-right: solid 1px #ddd;
      border-bottom: solid 1px #ddd;
    }
    td{
      border-right: solid 1px #ddd;
      border-bottom: solid 1px #ddd;
    }
    th:last-child{
      border-right: 0;
      border-bottom: 0;
    }
    th:last-child{
      border-right: 0;
      border-bottom: 0;
    }
  </style>
</head>

<body>
  <table border="0">
    <tr style="background:#ddd;border-radius: 25px;">
      <th>Month</th>
      <th>Savings</th>
    </tr>
    <tr>
      <td>January</td>
      <td>$100</td>
    </tr>
  </table>
</body>

</html>

效果
图片.png

要怎么改才能让tr上有圆角

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

妖妓 2022-09-20 01:16:27

https://drafts.csswg.org/css-...
不可以给tr/table(border-collapse 为 collapse)设置,只能用td/th hack下

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文