I have an interesting box-model/width/inheritance problem I'm puzzling through. Basically, here's what I have:
<table>
<tr>
<td>
<div><input type="text">So the td is at least this big</input></div>
<div>
<button>The Fish Molecular Genetics and Biotechnology Laboratory</button>
<button>Each button must be as wide as the widest one</button>
</div>
</td>
</tr>
<table>
In this simplified model, <td> has (and must have) auto width, <button> has 100% width and display:block; so that all buttons will be the same width, <button> also has some padding, and pretty much everything has box-sizing:border-box;.
So, when a button is rendered, its box width gets set to the width of the text it contains. But oh wait, its box width is measured from border to border and it has a padding, so the text actually wraps to the next line. And it has to be border-box because of many good reasons that are not apparent in the above simplified model. And the td has to have auto width because the buttons change in real time based on what's in the text box.
white-space:nowrapwithpadding:1emto see the issue. – Andrew Sep 26 '12 at 21:12