Tagged Questions
The border-box tag has no wiki summary.
5
votes
4answers
582 views
CSS: how to set the width of form control so they all have the same width?
Consider the following example:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html ...
5
votes
2answers
3k views
Inconsistent box model between <input type=“submit”/> and <input type=“text” />
After much frustration, I've realised that <input type="submit"/>s have a border-box box model, whereas <input type="text"/> has a content-box box model. This behavior is present in IE8 ...
1
vote
1answer
64 views
Chrome vs. box-sizing:border-box in a display:table
I'm doing a small 2-pane layout using display:table. For spacing (also from the background image), I use padding. As I need the children to have an exact width:50% from the available space (taking ...
1
vote
2answers
164 views
What causes the “user agent stylesheet” to use “border-box” instead of “content-box” for box-sizing?
I'm under the impression that the user agent stylesheet in browsers such as Safari, Chrome and Firefox is something that is internal to the browser and can't be directly modified (rather a style ...