Answers for "how to make input box bigger"

CSS
1

how to increase size of input submit type in html

input[type=submit] {
    width: 20em;  height: 2em;
}
Posted by: Guest on September-05-2020
5

input text size css

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

how to increase size of input submit type in html

#search {
    width: 20em;  height: 2em;
}
Posted by: Guest on May-15-2020

Code answers related to "how to make input box bigger"

Browse Popular Code Answers by Language