Entry
is it possible to get the text centered in a textfield used in a form??
Is it possible to get the text centered in a textfield used in a form using CSS?
is it possible to get the text centered in a textfield used in a form??
Feb 21st, 2001 18:09
Ben Gordon, manicam balva,
It is possible in IE4+ & NS6 but NS4.xx allows very little use of CSS in
forms.
Add this style to the <input> tag that you want to be centered
style="text-align:center;" or you can add this to the head section
<style>
input {text-align:center;}
</style>