gpt4 book ai didi

html - 如何在div的底部设置表格

转载 作者:可可西里 更新时间:2023-11-01 13:27:19 27 4
gpt4 key购买 nike

我需要我的表格在我的 div 的底部对齐,我尝试将属性添加到表格的样式中:position:absolute;bottom:0px 但它根据页面和不是股利。我发布了完整的代码(带有 img 标签),因为我不确定其他标签的影响。

//HTML

 <div>
<img src="Img/flower" style="width: 960px; height: 474px; z-index: -1; position: absolute" />
<table style="width:100%;height:120px;">
<tr>
<td style="background-color:gray">
</td>
<td style="background-color:green">
</td>
<td style="background-color:yellow">
</td>
<td style="background-color:red">
</td>
<td style="background-color:lime">
</td>
<td style="background-color:maroon">
</td>
</tr>
</table></div>

最佳答案

Your parent "div" and "img" should be declared as "position:relative" in this case. here is your solution:

<div style="position: relative;">
<img src="Img/flower" style="width: 960px; height: 474px; z-index: -1; position: relative;">
<table style="width: 100%; height: 120px;">
<tbody><tr>
<td style="background-color:gray">
</td>
<td style="background-color:green">
</td>
<td style="background-color:yellow">
</td>
<td style="background-color:red">
</td>
<td style="background-color:lime">
</td>
<td style="background-color:maroon">
</td>
</tr>
</tbody></table>


</div>

关于html - 如何在div的底部设置表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35635643/

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