HTML&CSS - Display inline-block
by Code_Garage
HTML
<button class="btn-big">Grand bouton</button>
<button class="btn-normal">Bouton normal</button>
<button class="btn-small">Petit bouton</button>
CSS
.btn-big {
height: 30px;
width: 150px;
font-size: 16px;
}
.btn-small {
height: 18px;
font-size: 8px;
}