Placeholder text gets aligned left in safari browser. It is working good in all other browser.
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';
}
Please see the demo in fiddle
I want to align the placeholder
at center of the input
box. How to do this?