I'm trying to center and align all of my form fields to look like this
Here my jsfiddle code http://jsfiddle.net/he7Xc/
.
I'm trying to center and align all of my form fields to look like this
Here my jsfiddle code http://jsfiddle.net/he7Xc/
.
Try this:
.info {
margin: 0 auto;
display: block;
}
Or you can wrap the field in a <div>
that has a style of text-align:center
.
Just check this fiddle i have edited its exactly what you want....
<label for="E-mail">E-mail:</label><input type="email" name="email" autofocus required><br>