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?

Example

link|improve this question

See this answer I posted not 15 minutes ago: stackoverflow.com/questions/5219030/… This should work perfectly for you, unless you require it to work in IE7. – thirtydot Mar 7 '11 at 11:38
4  
IE7 support would be nice :/ – Hailwood Mar 7 '11 at 11:46
If you used my method, see the slight edit I just made on my answer. It ensures "even padding" in some browsers. – thirtydot Mar 9 '11 at 12:06
feedback

5 Answers

up vote 18 down vote accepted

If you want this to work in IE7, you're stuck with the Ugly Approach:

  • Add a wrapper element.
  • Remove all padding and border from the input element.
  • Add the padding and border to the wrapper.

This will work in "every browser".

Live Demo

CSS:

.inputContainer {
    background: #fff;
    padding: 5px 10px;
    border: 1px solid #a9a9a9
}
.inputContainer input {
    width: 100%;
    margin: 0; padding: 0; border: 0;
    display: block
}

HTML:

<div class="inputContainer"><input /></div>
link|improve this answer
2  
I hate this answer. Can anybody think of a better method for IE7? – thirtydot Jul 13 '11 at 23:47
I don't think this is that bad of a solution. In general, wrapping elements in an extra div is a good way to pad elements without pushing the overall width of the element beyond it's parent container. – Jakobud Aug 23 '11 at 22:13
feedback

This is why we have box-sizing in CSS.

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:

input {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

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.

link|improve this answer
1  
+1, but caniuse.com/#search=box-sizing IE 8? Also, github.com/Schepp/box-sizing-polyfill seems to provide a solution for IE 6-7. – Alix Axel Jan 31 at 3:07
feedback

Use padding in percentages too and remove from the width:

padding: 5%;
width: 90%;
link|improve this answer
Clean and simple. – ripper234 Dec 13 '11 at 13:26
1  
Fyi, this solution is only ideal for non-flexible layouts. – muffs Dec 15 '11 at 21:25
+1, The problem with this would be the borders I guess. Normally, they only look "right" with 1 to 3 pixels max. The results are too unpredictable considering the the browser inconsistencies regarding sub-pixel rounding. – Alix Axel Jan 31 at 3:11
feedback

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.

Live example

link|improve this answer
What browsers did you test this in? :( – thirtydot Mar 7 '11 at 12:00
You'd expect it to work, but it just doesn't. – thirtydot Mar 7 '11 at 12:18
Hmm, works only in Chrome. But I know I got something very similar to work in FF & IE as well. – Felix Mar 7 '11 at 12:55
Seems like it's not working with <input> elements in Firefox (idk about IE). It works with <div>s, though. And no, display: block on the <input> doesn't work either :-/ – Felix Mar 7 '11 at 13:02
feedback

Move the input box' padding to a wrapper element.

<style>
div.outer{ background: red; padding: 10px; }
div.inner { border: 1px solid #888; padding: 5px 10px; background: white; }
input { width: 100%; border: none }
</style>

<div class="outer">
    <div class="inner">
       <input/>
    </div>
</div>

See example here: http://jsfiddle.net/L7wYD/1/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.