gpt4 book ai didi

jquery - 将 2 个 div 粘贴到右上角和左下角

转载 作者:行者123 更新时间:2023-11-28 08:13:52 24 4
gpt4 key购买 nike

我正在使用 jQuery 的 resizable()。我希望能够在右上角制作一个 div,而另一个 div 始终位于左下角。我希望将这 2 个 div 设置为可调整大小的句柄 nesw 的位置。

如何让 $(".td")$(".tl") 粘在 $ 的右上角和左下角(".nWrapper") 在任何时候?

html:

<div class="lWrapper">
<div class="nWrapper">
<div class="tWrapper">
<div class="td"></div>
<div class="tl"></div>
</div>
</div>
</div>

CSS:

.lWrapper{
position: relative;
background-color: #ff0000;
width: 200px;
height: 200px;
}
.nWrapper{
position: absolute;
background-color: #00ff00;
width: 200px;
height: 100px;
}
.tWrapper{
position: absolute;
}
.td{
position: relative;
background-color: #0000ff;
width: 12px;
height: 12px;
left: 0; /*want it left bottom*/
bottom: 0;
}
.t1{
position: relative;
background-color: #ff6600;
width: 12px;
height: 12px;
float: right; /*want it right top*/
top: 0;
}

Example Fiddle

最佳答案

您需要使包装 div (nWrapper) 具有 position: relative 和较小的具有 position: absolute 并给这两个适当的 left/右/上/下值。

在这里查看:https://jsfiddle.net/ze9go151/2/

关于jquery - 将 2 个 div 粘贴到右上角和左下角,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29105053/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com