Rounded tables in Twitter Bootstrap 3

前端 未结 10 854
清酒与你
清酒与你 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:21

    Using Christina's answer and this thread , i came up with this CSS to get the rounded corners in tables with or without THEAD.

    .table-curved {
       border-collapse: separate;
       border: solid #ccc 1px;
       border-radius: 6px;
       border-left: 0px;
       border-top: 0px;
    }
    .table-curved > thead:first-child > tr:first-child > th {
        border-bottom: 0px;
        border-top: solid #ccc 1px;
    }
    .table-curved td, .table-curved th {
        border-left: 1px solid #ccc;
        border-top: 1px solid #ccc;
    }
    .table-curved > :first-child > :first-child > :first-child {
        border-radius: 6px 0 0 0;
    }
    .table-curved > :first-child > :first-child > :last-child {
        border-radius: 0 6px 0 0;
    }
    .table-curved > :last-child > :last-child > :first-child {
        border-radius: 0 0 0 6px;
    }
    .table-curved > :last-child > :last-child > :last-child {
        border-radius: 0 0 6px 0;
    }
    

提交回复
热议问题