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: block isn’t added to the CSS. I have added display: block to my CSS but still it isn’t display as I would like it to.
I’ve made a JSFiddle to keep easier to understand: http://jsfiddle.net/XnKDQ/97/
In order for
margin: 0 auto;to work, in addition todisplay:blockawidthneeds to be specified.