Answers for "change sixe of text input field"

CSS
5

input text size css

input[type="text"]
{
    font-size:24px;
}
Posted by: Guest on April-27-2021
1

change font size of input text html

<style>
#my_input{
	font-size:15px;  
}
</style>

<input id='my_input'>
Posted by: Guest on May-24-2021

Code answers related to "change sixe of text input field"

Browse Popular Code Answers by Language