保持子节点相对于其启用 jQuery 可调整大小的父节点的位置?

发布于 2024-10-14 11:50:42 字数 295 浏览 4 评论 0原文

是否可以保持

子项相对于其 jQuery 可调整大小的父项的位置?

抱歉,如果我的措辞有点令人困惑。

您可以在此处查看其实际效果。

我想要发生的是,当这些“图块”被拖动到不同的形状时,让

元素保留在图块的左下角。

是否可以用纯 CSS 来实现这一点?

谢谢!

Is it possible to keep the position of <p>children relative to their jQuery resizable parents?

Sorry if my wording is a little confusing.

You can see it in action here.

What I want to have happen, is when those "tiles" are dragged into a different shape, have the <p> elements stay in the bottom-left corner of the tiles.

Is it possible to accomplish this with pure CSS?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

百善笑为先 2024-10-21 11:50:42

是的,您只需

.tile p {
position: absolute;
bottom: 0;
left: 0;
}

在这些段落的 CSS 中设置:即可实现此目的。

Yeah, you can achieve this by simply setting:

.tile p {
position: absolute;
bottom: 0;
left: 0;
}

in the CSS for those paragraphs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文