Rounded tables in Twitter Bootstrap 3

前端 未结 10 840
清酒与你
清酒与你 2020-12-24 05:02

Bootstrap 3 has dropped rounded corners on tables. Which styles should I apply to get them back when I apply the .table-bordered class, please?

10条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-24 05:17

    This is another solution that may be far simpler than the above ones. This will select the first and last th elements and apply a border to their respective corners. You can then add a radius to the overall table.

    .table {
      border-radius: 5px;
    }
    th:first-of-type {
      border-top-left-radius: 5px;
    }
    th:last-of-type {
      border-top-right-radius: 5px;
    }
    

提交回复
热议问题