gpt4 book ai didi

html - CSS 边距 : 0 Auto; is not working on tag

转载 作者:太空狗 更新时间:2023-10-29 15:21:24 26 4
gpt4 key购买 nike

我的标记很简单,而且我使用的是内联 CSS。我的目标是使用 margin: 0 auto; 使图像居中在style HTML 属性。这是我试过的代码:

<div style="width: 100%;">
<img src="http://dummyimage.com/200x300/000000/fff" style="margin: 0 auto;"/>
</div>

为什么 CSS 没有居中我的 <img>

最佳答案

您必须使用 display: block 才能使 margin: 0px auto 生效。

<div style="width: 100%;">
<img src="http://placekitten.com/g/200/300" style="display: block; margin: 0px auto;">
</div>

关于html - CSS 边距 : 0 Auto; is not working on <img> tag,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26477480/

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