0
child
要素を親の全幅にリサイズできないのはなぜですか?約10または20ピクセルは常に全幅に欠けています。親の全幅に子要素のサイズを変更できません
<div id='parent'>
<div id='child'>CHILD</div>
</div>
CSS
#parent{
width:450px;
height:320px;
margin:0;
background:lightgreen;
}
#child{
width:120px;
height:45px;
margin:0;
background:gold;
}
JS
$("#child").resizable({
aspectRatio: true,
containment: "#parent"
});
、you追加することができます。 –
@NikhileshKV、それはどのように可能ですか?私はChromeとOperaで成功を収めています。 – bonaca