Button Group
Preview
Code
<style>
.group{
display:inline-flex;
}
.group button{
border:1px solid #2563eb;
background:#2563eb;
color:white;
padding:10px 14px;
}
.group button:not(:last-child){
border-right:none;
}
</style>
<div class="group">
<button>Left</button>
<button>Center</button>
<button>Right</button>
</div>