gpt4 book ai didi

html - 如何将图像包裹在div中,然后将div居中

转载 作者:太空宇宙 更新时间:2023-11-04 00:19:18 25 4
gpt4 key购买 nike

我有这个 CSS:

   <style type="text/css">

#heading{
margin:auto;
background-color: brown;

}
</style>

和这个 html:

<div id="heading">
<image src="image_files/header-background.jpg" alt="speakom" />
</div>

我不知道图像的确切大小..但我希望 div 以准确的宽度包裹图像,然后我想使该 div 居中..我该如何实现?

最佳答案

使用 inline-block 将使 div 成为其内容的宽度,并允许您使用自动边距将其居中:

#heading {
margin: 0px auto;
display: inline-block;
}​

关于html - 如何将图像包裹在div中,然后将div居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9956667/

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