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:
I found the solution for you
you should specify element width
input { display: block; width: 60px; margin: 10px auto; padding: 3px; }