gpt4 book ai didi

html - 为什么不 margin :auto center an image?

转载 作者:技术小花猫 更新时间:2023-10-29 11:28:53 26 4
gpt4 key购买 nike

<html>
<head>
<title>Test</title>
</head>
<body>
<div>
<img src="queuedError.jpg" style="margin:auto; width:200px;" />
</div>
</body>
</html>

div 应该会扩展到 100%,但图像不会自行居中。为什么?

最佳答案

因为你的图片是 inline-block element .您可以将其更改为 block-level element像这样:

<img src="queuedError.jpg" style="margin:auto; width:200px;display:block" />

它将居中。

关于html - 为什么不 margin :auto center an image?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3015223/

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