我有一个 DIV 元素,其中有一个<label></label>
输入文本框。
基本上,我在 DIV 元素上启用了 jQuery .resizable() ,但是当您使 DIV 元素小于当前值时,文本框会被推到新行上。
我怎样才能强制它<label>
永远不会小于设定的尺寸?
谢谢!
<div id='div1' style='width:300px'>
<label>Test
<input type='text' style='width:100px' id='inputBox'/>
</label>
</div>
$("#div1").resizable({
handles: "e, w, sw, ne, nw, se"
});