I'm having a text field with a jQuery hint. How do I align the font to be in the middle? I've attempted using vertical-align: middle but it doesn't seem to work.
<style type="text/css">
#name {
border: 1px solid #c810ca;
height: 27px;
}
input[type=text].hint{
color: #fff;
font-size: 11px;
font-family: "times new roman";
}
input[type=text]{
font-size: 13px;
color: #fff;
font-family: "times new roman";
}
Form textfield
<div id="name">
<input name="name" type="text" id="name" title="insert here"/>
</div>