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
In Bootstrap 4, make use of .d-flex on your .btn-group and .w-100 on individual buttons:
.d-flex
.btn-group
.w-100
.btn-group.d-flex(role='group') button.w-100.btn.btn-lg.btn-success(type='button')