Rounded tables in Twitter Bootstrap 3

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

    Use table-bordered-curved instead table-bordered

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

提交回复
热议问题