I have a fieldset that looks like this:
<fieldset>
<input><label>tada</label>
<input><label>tada</label>
</fieldset>
fieldset{
overflow: hidden;
height: 20px;
}
input{
display: block
}
Js-fiddle:
how come the fieldset shows all it's containing elements, whilst if I change the fieldset to a div: http://jsfiddle.net/GWdWy/2/
the overflow hidden works.