繰り返しになりますが、私には2つの要素があり、そのうちの1つを2番目の要素に対して相対的に配置したいと思います:-)見つけたので、そのために「jquery ui.position()」を使用したいと思います。これが私が得たものです:
<div id="testparent">Parent</div>
<div id="testchild">Child</div>
#testparent{
position: absolute;
margin:100px auto auto auto;
width:300px;
height:120px;
background:lime;
}
#testchild{
margin:auto;
width:60px;
height:90px;
background:yellow;
}
$('#testchild').position({
of: $('#testparent'),
my: "left top",
at: "left bottom",
offset: "0 3"
});
テストチャイルドをテストペアレントの上/下に配置したい。問題は、親に対して水平に配置するのではなく、垂直に配置することです。それは可能ですか:-)??