我的Div有一些prestyle,包括height: 100%
如果我将jQuery draggable添加到div中,并在它周围移动它会在div上设置一个固定的高度。
如何禁用固定高度,以便它仍适用于样式表的高度?
$('.DTable').draggable({
heightStyle: '100%'
}).draggable({
containment: "window",
});
答案 0 :(得分:1)
在你的css中使用父元素
.parent .DTable {height:100px;}
或使用hight上的!important
.DTable {height:100px!important;}