The placeholder text is aligned to the left in the Safari browser. It works well in all other browsers.
HTML:
<input type="text" class="form-input" placeholder="Email Address" />
CSS
.form-input {
width: 235px;
height: 15px;
border: solid 5px #fff;
text-align: center;
padding: 10px 0px 10px 0px;
font-family: 'Helvetica-Bold';
}
See the demo in fiddle
I want to align placeholderin the middle of the field input. How to do it?
source
share