It is necessary to increase the size of the input so that visually impaired people can freely fill it. The font in the imput is also desirable to increase. How to do it on html, maybe using CSS? I would be grateful for any tips.
2 answers
css register in the file styles for your input.
.class_bla_bla{ font-size:30px; font-weight:bold; color:#000000; }
Well, then do as you wish. Increase the font, other color and so on.
You can experiment
|
HTML formatting is an old age you have to do everything through CSS
<input type="text" class="text" name="" /> <style> input.text { width: 200px; height: 15px; padding: 5px 10px 5px 10px; border:1px solid #999; font-size:16px; font-family: Tahoma; } </style>
on the text class we hang up the style input.text I think everything is clear and at least some parameters can be put in the attributes of css
- If you use height for input, use padding in IE or Firefox. There will be a glitch. The text will be off center! - FreelancerUz
|