📜  无法将边框半径应用于 tr - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:50.657000             🧑  作者: Mango

代码示例1
tr:first-child th:first-child {
      border-top-left-radius: 70px;
      border-bottom-left-radius: 70px;
    }
    tr:first-child th:last-child {
      border-top-right-radius: 70px;
      border-bottom-right-radius: 70px;
    }