I have an html input.
The input has padding: 5px 10px; I want it to be 100% of the parent div\'s width(which is fluid).
padding: 5px 10px;
However using widt
widt
You can try some positioning tricks. You can put the input in a div with position: relative and a fixed height, then on the input have position: absolute; left: 0; right: 0;, and any padding you like.
position: relative
position: absolute; left: 0; right: 0;