I\'m trying to center an input button within a form but the usual margin: 0 auto; isn\'t doing anything. Here\'s how my HTML is set up:
For the margin: auto trick to work, the element must be a block. So, add display: block; to the button css and you'll be fine ;)
margin: auto
block
display: block;