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).
However using width: 100%; causes the input to be 100% + 20px how can I get around this?
|
I have an html input. The input has However using
| |||||||||
feedback
|
|
If you want this to work in IE7, you're stuck with the Ugly Approach:
This will work in "every browser". CSS:
HTML:
| |||||||
feedback
|
|
This is why we have I’ve edited your example, and now it works in Safari, Chrome, Firefox, and Opera. Check it out: http://jsfiddle.net/mathias/Bupr3/ All I added was this:
Unfortunately older browsers such as IE7 do not support this. If you’re looking for a solution that works in old IEs, check out the other answers. | |||||
feedback
|
|
Use padding in percentages too and remove from the width: padding: 5%; width: 90%; | |||||||||
feedback
|
|
You can try some positioning tricks. You can put the input in a div with Live example | |||||||||
feedback
|
|
Move the input box' padding to a wrapper element.
See example here: http://jsfiddle.net/L7wYD/1/ | ||||
|
feedback
|