画布和 z 索引

发布于 2024-12-09 17:24:53 字数 806 浏览 0 评论 0原文

我有以下 HTML 代码:

<div class="reflect" style="width: 348px; height: 327px; overflow-x: hidden; overflow-y: hidden; ">
    <img id="image" class="reflected" 
         src="http://domain.com/1-1.png" 
         style="display: block; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial;">
    <canvas width="348" height="54" 
        style="display: block; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: -50px;"></canvas>
</div>

我希望 canvas 元素出现在 IMG 下方。现在,画布位于图像的顶部,其中 50px 部分位于顶部(请参阅 margin-top: 50px)。我尝试为每个元素设置 z-index 但没有成功。需要你的帮助来解决这个问题。

I have the following HTML code:

<div class="reflect" style="width: 348px; height: 327px; overflow-x: hidden; overflow-y: hidden; ">
    <img id="image" class="reflected" 
         src="http://domain.com/1-1.png" 
         style="display: block; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial;">
    <canvas width="348" height="54" 
        style="display: block; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px; border-style: initial; border-color: initial; margin-top: -50px;"></canvas>
</div>

I want the canvas element to appear below the IMG. Right now, the canvas is on top of the image, 50px part of it on top (see margin-top: 50px). I've tried setting z-index to each element with no success. Need your help in solving this one.

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

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

发布评论

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

评论(1

夏末染殇 2024-12-16 17:24:53

您需要查看元素的absolute定位和z-index

如果您绝对定位img,请设置z-index,然后然后从画布元素中删除 margin-top ,这应该可以工作。

You need to have a look at absolute positing of elements and z-index

If you position the img absolutely, set the z-index, and then remove the margin-top from the canvas element, this should work.

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