Answers for "how to change the size of an input box in html without css"

CSS
5

input text size css

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

input padding without changing width

input.input {
    width: 100%;
    box-sizing: border-box;
}
Posted by: Guest on November-17-2021

Code answers related to "how to change the size of an input box in html without css"

Browse Popular Code Answers by Language