gpt4 book ai didi

html - 将 div 元素定位在绝对定位的图像上

转载 作者:行者123 更新时间:2023-11-28 01:26:31 27 4
gpt4 key购买 nike

我有两张图像彼此重叠(一张绝对定位),这样我就可以将鼠标悬停在一张图片上以查看另一张。我还想放置一个跨越顶部图像下 1/4 的“文本框”(一个带有彩色背景的 div,可以容纳一些简单的文本),但是,我在尝试定位时遇到了一些问题当它下面的图像已经绝对定位时说文本框。

我在下面附上了一个示例代码笔,以及一张我想要的图片。有没有使用 HTML/CSS 执行此操作的简单方法?

Codepen

<img src="img1.foo" class="img1" />
<img src="img2.foo" class="img2" />
<div class="textBar">Text bar here?</div>

Example image

最佳答案

https://codepen.io/anon/pen/rKEEKb

要添加到“标签”类的 Css:

.tag {
position: absolute;
z-index: 3; /*place above the images */
bottom: 0; /* put it at the bottom */
padding: 20px;
width: 100%;
background: lightblue;
box-sizing: border-box; /* allow for padding to be included in width */
}

你也可以在没有 jquery 的情况下使用 css :hover伪类 https://developer.mozilla.org/en-US/docs/Web/CSS/:hover :

img.front:hover {
opacity: 0;
}

关于html - 将 div 元素定位在绝对定位的图像上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51216182/

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