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:
You can add a text-align: center to the input-field, which will automatically horizontally center anything within that element.
.input-field{ width:60%; margin:0 auto; background-color:red; text-align:center; }