如何使卡头在 bootstrap 4 上没有边框半径?我已经实现了这个,但是卡头的背景颜色与卡头重叠,因此卡头仍然具有边界半径

.card-header {
    height: 50px;
    background-color: #000;
    border-bottom-color: #fff;
    border-top: none;
    border-radius: 0;
}

最佳答案

要移除半径,请指定类 rounded-0 。 Bootstrap 4.

<button type="button" class="btn btn-primary rounded-0">...</button>

关于html - 如何在 Bootstrap 4 中使卡头无边框半径?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46316719/

10-09 18:23