12 lines
554 B
HTML
12 lines
554 B
HTML
<div class="btn-group" role="group" aria-label="Basic example">
|
|
<button type="button" class="btn btn-primary">Left</button>
|
|
<button type="button" class="btn btn-primary">Middle</button>
|
|
<button type="button" class="btn btn-primary">Right</button>
|
|
</div>
|
|
|
|
<div class="btn-group" role="group" aria-label="Basic outlined example">
|
|
<button type="button" class="btn btn-outline-primary">Left</button>
|
|
<button type="button" class="btn btn-outline-primary">Middle</button>
|
|
<button type="button" class="btn btn-outline-primary">Right</button>
|
|
</div>
|