The input element by default is size=\"20\" if this is not defined inline or a CSS style rule is attributed to it.
How do you make the default the actual size of the
The input element by default is size="20"
This "default size" depends on the browser, the version and your OS. It is not possible to do this in inline styles.
the best solution is to set width and padding so it adds up to 100%
input {
width: 98%;
padding: 1%;
}
then set it to absolute left and right 0
finally add this css