gpt4 book ai didi

javascript - 将 div 放在其他 div 的左边框上

转载 作者:太空宇宙 更新时间:2023-11-03 18:38:57 25 4
gpt4 key购买 nike

是否可以将 div .timedistance 放在 .draggable div 的左边框上,使其看起来像这样?

enter image description here

演示:http://jsbin.com/erofot/189

代码:

$('.draggable').hover(function(){
$(this).find('.line').show();
$(this).find('.timedistance').show();

}, function() {
$(this).find('.line').hide();
$(this).find('.timedistance').hide();


});

}
});
$(".draggable").each(function() {
$(this).append("<div class='line'></div>");
$(this).append("<div class='timedistance'></div>");

});

和 CSS:

.line
{
display: none;
width:5px; height:200px; background:#ccc;
}
.timedistance
{
display: none;
width:100px;
height:54px;
background:#ccc;
}

最佳答案

解决方法是:

margin-left: -100px;
margin-top: -54px;

关于javascript - 将 div 放在其他 div 的左边框上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18060478/

25 4 0