How to get button groups that span the full width of a parent in Bootstrap?

后端 未结 6 2029
误落风尘
误落风尘 2021-01-30 20:54

In Bootstrap, how can I get a button group like the following that span the full width of a parent element? (like with the \".btn-block\" class, but applied to a group http://ge

6条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-30 21:42

    Flexbox can do that.

    .btn-group.special {
      display: flex;
    }
    
    .special .btn {
      flex: 1
    }
    
    

提交回复
热议问题