Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] How to align buttons (with height and width) horizontally? Reply To: [Solved] How to align buttons (with height and width) horizontally?

#202897
Paulie_D
Member

inputs are inline elements and so their default vertical alignment is baseline.

You would need to set this (I would suggest) to top

button {
    width:100px;
    height:100px;
    vertical-align: top;
}

JSfiddle