Vertical alignment of buttons | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Vertical alignment of buttons

How do i align buttons vertically? I'm trying to make a replica of google but not all the excess stuff but i can't seem to align the butttons.. need help.

6th Aug 2018, 4:12 AM
Julio
Julio - avatar
1 Answer
+ 2
try this .container { background: lightblue; display: table; width:100%; } input[type=button] { display: block; width: 50%; margin: 0 auto; } .button-wrapper { background: darkorange; display: table-cell; vertical-align: middle; } <div class='container'> <div>some line with text</div> <div>another line with text</div> <div class='button-wrapper'> <input type="button" value="submit" /> </div> </div>
6th Aug 2018, 6:25 AM
Jerome Esplana
Jerome Esplana - avatar