0
我正在使用jquery ui調整div的大小,但我的固定位置div正在移動到調整大小的頂部。固定位置div調整大小
嘗試調整它飛頂部股利。
jQuery UI的
$('.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>
我如何調整它的大小???