我想从左侧调整我的div。但是,如果我使用遏制它不起作用,但如果我移除了容器,它就能正常工作。
小提琴:https://jsfiddle.net/aoaLqngj/6/
使用Javascript:
$(".child").resizable({
"containment": ".container",
"handles": "w",
"resize": function(event) {
$(event.target).height("50px");
}
})