|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
change the display size of font in textbox
I am trying to change the display size of font in a textbox in a simple html textbox form... it's for kids to use, need the text they type in the form to be larger.
Thanks
__________________
bow wow! |
|
#2
|
||||
|
||||
|
Create a style sheet that looks something like the following:
Code:
input{
font-size: 14pt;
}
Or if you don't want the size to change for all inputs, do the following: Code:
.bigtext{
font-size: 14pt;
}
And when you write your input, do so as follows: Code:
<input type="text" class="bigtext" name="name"> |
|
#3
|
|||
|
|||
|
Thank you
Thank you , it worked like OS 9.1.
|
![]() |
| Viewing: Dev Articles Community Forums > Web Design > Advanced Web Development > change the display size of font in textbox |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|