Answers for "input number font size"

0

size of number input box

input[type=number]{
    width: 80px;
}
Posted by: Guest on August-10-2020
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

Browse Popular Code Answers by Language