gpt4 book ai didi

css - 如何让我的图像位于 div 的中心?

转载 作者:太空宇宙 更新时间:2023-11-03 20:23:47 25 4
gpt4 key购买 nike

给定这个 HTML:

<div>
<img id="image">
</div>

如何让图片位于 div 的中心?

目前它位于div的左上角。

我试过了

img#image
{
text-align:center;
}

但这并没有什么不同。

最佳答案

尝试将位置 relative 给 div:

#div_id{
position:relative;
width:400px;
height:200px;
}

图像的 CSS:

#img_id{
position:absolute;
top:100px; /* half of parent div's height */
left:200px; /* half of parent div's width */
display:block;
}

关于css - 如何让我的图像位于 div 的中心?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4126752/

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