gpt4 book ai didi

css - DIV 在 TD 内的 IMG 上

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

我需要在 TD 内的 IMG 上放置一个 DIV,只是为了显示一些东西,但是当我这样做时,DIV 是在 IMG 下创建的(不是覆盖,只是在下面,就像向左浮动和向右清除...)

HTML:

<table id="table" cellspacing="0">
<tr>
<td><img src="something-here.jpg" alt="asd"/><div>Text over the image</div></td>
<td><img src="something-here.jpg" alt="asd"/><div>Text over the image</div></td>
<td><img src="something-here.jpg" alt="asd"/><div>Text over the image</div></td>
</tr>
</table

最佳答案

你可以像这样使用 css:

#table td, #table td img {
position:relative
}
#table td img {
z-index:-1
max-width:100%;
}
#table td div {
position:absolute;
bottom:0;
background:rgba(0,0,0,0.5);
color:#fff;
width:100%;
}

示例:http://jsbin.com/iyESasiv/1/edit .您可以从 css 中删除背景颜色等。

关于css - DIV 在 TD 内的 IMG 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20356937/

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