I have an input in a form that I am trying to align in the center. Usually margin-left:auto and margin-right: auto fail to respond when display:
margin-left:auto
margin-right: auto
display:
In order for margin: 0 auto; to work, in addition to display:block a width needs to be specified.
margin: 0 auto;
display:block
width