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

后端 未结 6 2036
误落风尘
误落风尘 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条回答
  •  猫巷女王i
    2021-01-30 21:16

    In Bootstrap 4, make use of .d-flex on your .btn-group and .w-100 on individual buttons:

    .btn-group.d-flex(role='group')
      button.w-100.btn.btn-lg.btn-success(type='button') 

提交回复
热议问题