0

I'm trying to center and align all of my form fields to look like this

Here my jsfiddle code http://jsfiddle.net/he7Xc/

.
RedGaiter
  • 21
  • 1
  • 1
  • 3

2 Answers2

0

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.

Ptr13
  • 553
  • 2
  • 6
  • 14
0

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>

http://jsfiddle.net/VwaZJ/