Hi all,
I m setting the style of some textfields within a form.
How do I define so as no matter what height I define the textbox, the text with in will be cener aligned and stable.
As I have done below, you can move the text input with the mouse.
cheers Steve
Code:
.inputField {
border: 1px groove #99CD00;
font: 11px Arial, Helvetica, sans-serif; color: #000;
text-align: left;
width:120px; height:14px;
}
<input type="text" name="textfield" class="inputField"/>
|