cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

I have 2 table one on right and one on left and in between I have 2 buttons in a vertical layout I need to have these buttons in middle.

No matter what I do they do not come in center.

Any help with using alignment would be great.

Also I cannot add padding in buttons.

Here is link to bin

JS Bin - Collaborative JavaScript Debugging</title> <link rel="icon" href="h...

0 Likes
View Entire Topic
Former Member
0 Likes

Hello Sagar,

I would suggest you have one main horizontal layout which will contain three vertical layouts

First vertical layout will have first listbox

second vertical layout will have your move buttons - class "moveButtons"

Third vertical layout will have second list box

Then, talking of aligning vertivcal middle your move buttons..

heres css for your moveButtons

.moveButtons{

    margin: auto;

    position: absolute;

    top: 0; left: 0; bottom: 0; right: 0;

}

This should do it...