我有一个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"
});
答案 0 :(得分:2)
给它min-width
:
<div id='div1' style='width: 300px; min-width: 300px;'>
或者,最好是:
#div1 {
min-width: 300px;
width: 300px;
}
答案 1 :(得分:2)
jQuery UI的resizable具有minWidth属性(example from the docs):
$( "#resizable" ).resizable({
maxHeight: 250,
maxWidth: 350,
minHeight: 150,
minWidth: 200
});
因此,您可以将maxWidthProperty设置为$("label").width()
。