submit width css code example
Example 1: how to increase size of input submit type in html
input[type=submit] {
width: 20em; height: 2em;
}
Example 2: how to resize submit button in html
<input type="submit" id="search" value="Search" />
input[type=submit] {
width: 20em; height: 2em;
}
<input type="submit" id="search" value="Search" />