How to change font size in a textbox in html

Viewed 194592

How can I change the font size of text inside the textbox in html.

3 Answers

For a <input type='text'> element:

input { font-size: 18px; }

or for a <textarea>:

textarea { font-size: 18px; }

or for a <select>:

select { font-size: 18px; }

you get the drift.

Related