Why does it not enable resize control on the fieldset?
Docs only say that
resize does not apply to the following:
- Inline elements
- Block elements for which the overflow property is set to visible
fieldset {
resize: both;
overflow: hidden;
}
<fieldset>
<legend>Controls</legend>
<label>Input: </label><input type="number" value="20"/>
</fieldset>
I tried wrapping fieldset in a div and also wrapping everything in fieldset with a div and made that resizeable. That kind of works but the drag handle is many pixels off the fieldset border. Also when resizing it looks weird and sometimes hides the fieldset borders.