I am building a form in Twitter Bootstrap but I\'m having issues with centering the button below the input in the form. I have already tried applying the center-block<
center-block<
You can do it by giving margin or by positioning those elements absolutely.
For example
.button{ margin:0px auto; //it will center them }
0px will be from top and bottom and auto will be from left and right.