Rounded tables in Twitter Bootstrap 3

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

    The following one works quite nicely for me:

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

    Though it does not of course work for nested tables.

提交回复
热议问题