gpt4 book ai didi

html - 图片下方居中文字

转载 作者:行者123 更新时间:2023-11-28 15:18:39 24 4
gpt4 key购买 nike

我有三个图像部分:

img section{
float:left;
text-align:center;
}
img section two{
float:center;
text-align:center;
}
img section three
float:right;
text-align:center;
}

并且我尝试将 text-align:center 放在所有它们上,但它不会居中。

http://i.stack.imgur.com/cgK2B.png

这是我试图居中的其中一个文本的图像。

HTML:

<section class ="img_section">
<div>
<img src="images/cafepicture.png" alt="Cafe Inside">
<br>
<p>insert text</p><br>
</div>
</section>

我对 html 毫无用处,所以任何帮助都会很棒

最佳答案

尝试申请 text-align: center;<p>标记并给它一个宽度(确保你的部分也有宽度)。

此外,无关的,你不应该需要那些<br>标签。也清除 CSS 中的 float 。我已经包含了内联样式来演示:

<section class="img_section" style="width: 150px;">
<img src="images/cafepicture.png" alt="Cafe Inside">
<p style="width: 100%; text-align: center; clear: left;">insert text</p>
</section>

关于html - 图片下方居中文字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38885342/

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