Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Ok, so we know that setting padding to an object causes its width to change even if it is set explicitly. While one can argue the logic behind this, it causes some problems with some elements.

For most cases, you just add a child element and add padding to that one instead of the one set to 100%, but for form inputs, that's not a possible step.

Take a look at this: http://sandman.net/test/formcss.html

The second input has its padding set to 5px which I very much prefer to the default setting. But unfortunately that makes the input grow 10px in all directions, including adding 10px to the 100% width.

Problem here is that I can't add a child element inside the input so I can't fix it. So the question is:

Is there any way to add padding inside the input while still keeping the width 100%? It need to be 100% since the forms will render in different width parents so I don't know beforehand the width of the parent.

share|improve this question
2  
See stackoverflow.com/questions/628500/… for how to use the CSS3 box-sizing attribute – Daniel LeCheminant Apr 21 '10 at 20:13
7  
Just gotta say, thanks for keeping your example page up all this time. Drives me nuts when someone posts a url in the question and it's down after the answer is answered or they don't use something like jsfiddle. – Jonathan Dumaine Oct 7 '11 at 7:49

8 Answers

up vote 6 down vote accepted

I don't know how cross browser compatible it is (it works in firefox and safari), but you could try this solution:

DIV.formvalue {
padding: 15px;
}
input.input {
margin: -5px;
}

(Only posted the values that I changed)

share|improve this answer
1  
It causes problem in IE. – Tarik Sep 4 '09 at 7:42
1  
I would rather use standard code for such a "simple" thing... – Sandman Sep 4 '09 at 7:45
Well, that doesn't suprise me much :) Don't think that there's an easy cross browser solution without changing the markup. – michaelk Sep 4 '09 at 7:45
Ok, I'm voting up this solution now since adding margin:-5px apparently isn't a violation. I've added a fourth input to the page that uses this and it seems to actually work. jigsaw.w3.org/css-validator/… – Sandman Sep 4 '09 at 7:52

Using CSS3 you can use the property box-sizing to alter how the browser calculate the with of the input.

  input.input {
    width: 100%;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
  }

You can read more about it here: http://css-tricks.com/box-sizing/

share|improve this answer
+1 and if my boss finally decided we can drop support for IE7, it must not be used much at all.. he's super old-school. – eselk Feb 14 at 5:10
@Víctor Dieppa Garriga Thank you, It is a great solution. – sinanakyazici Apr 2 at 10:01

One option is to wrap the INPUT in a DIV which has the padding.

CSS:

div.formvalue {
    background-color: #eee;
    border: 1px solid red;
    padding: 10px;
    margin: 0px;
}

div.paddedInput {
    padding: 5px;
    border: 1px solid black;
    background-color: white;
}

div.paddedInput input {
    border: 0px;
    width: 100%;
}

HTML:

<div class="formvalue">
    <div class="paddedInput"><input type="text" value="Padded!" /></div>
</div>
share|improve this answer
5  
Padding a container div produces non-identical results to adding padding to an input field. – Felix Fung Jun 5 '12 at 0:29
Add to what Felix Fung said -- You lose the ability to click with the mouse in the padding area and have it focus the input field -- among other more noticable issues. Just wanted to point out this lesser noticed/known issue -- It annoys me to no end when using web pages that use this hack. – eselk Feb 14 at 5:08

I've been having some issues with something similar to this. I have tds with inputs of 100% and a small padding. What I did was compensate for the padding on the td as follows:

.form td {
    padding-right:8px;
}

.form input, .form textarea {
    border: 1px solid black;
    padding:3px;
    width:100%;
}

padding of 8px to include the border and padding of the input/textarea. Hope this helps!

share|improve this answer
THIS technique works great for lining up the width of cells that contain padded inputs with cells that don't.. Just apply the padding-right selectively to any TD that contains a 100% width input. – Seb Barre Feb 4 '12 at 14:34

Perhaps take the border+background off the input, and instead enclose it in a div with border+background and width:100%, and set a margin on the input?

share|improve this answer
That's the kind of hack I'm currently using for this problem, but I would rather use border on the input for "style reasons" or whatnot. But yes, this is how I am currently doing so it's a viable solution – Sandman Sep 4 '09 at 7:54

One solution I have found works is to absolutely position the input with a relatively positioned parent tag.

<p class="full-width-input">
    <input type="text" class="text />
</p>

The apply the style:

p.full-width-input {
    position: relative;
    height: 35px;
}

p.full-width-input input.text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 5px;
}

The only thing to be aware of is that the paragraph tag needs a height setting as its absolutely positioned children will not expand its height. This avoids the need to set width: 100% by locking it to the left and right sides of the parent element.

share|improve this answer
tested.. it doesn't work... could you please post a demo? – kikio Dec 30 '12 at 13:50

Try using percentages for your padding:

.input { 

  // remove border completely
  border: none;

  // don't forget to use the browser prefixes
  box-shadow: 0 0 0 1px silver;

  // Use PERCENTAGES for at least the horizontal padding
  padding: 5%; 

  // 100% - (2 * 5%)
  width: 90%; 

}

If you're worried about users on old browsers who can't see the box-shadow, just give the input a subtle background colour as backup. If you're using pixels for this sort of thing, then the chances are you're using them elsewhere, which could present a few extra-challenges, let me know if you encounter them.

share|improve this answer

Only thing I know to prevent this is assign values like that 100%-10. But it has some compatibility issues tho.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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