我正在使用 jquery ui 来调整 div 的大小,但我的固定位置 div 在调整大小时移动到顶部。
尝试调整它飞到顶部的 div 的大小。
jQuery 用户界面
$('.chatwnd').resizable({
maxHeight: 550,
maxWidth: 700,
minHeight: 350,
minWidth: 300,
handles: "n, e"
});
css
.chatwnd{
position:fixed;
bottom:0px;
left:50px;
height: 350px;
width:auto;
min-width:300px;
max-width:700px;
border:1px solid #ccc;
box-shadow:0px 0px 1px #777;
border-radius: 5px;
background:#ffffff;
overflow:hidden;
box-sizing:border-box;
-webkit-transition:height 1s;
}
html
<div class="chatwnd" > </div>
我该如何调整它的大小???