gpt4 book ai didi

html - 为更宽的屏幕减小段落的宽度

转载 作者:行者123 更新时间:2023-11-28 05:52:04 25 4
gpt4 key购买 nike

我已经做了一些研究,但找不到答案。当我超过浏览器的宽度时,我希望我在“关于页面”上的段落以一定的宽度停止。但是,当我应用宽度或最大宽度时,该段落只会粘在页面的左侧。有人可以帮我解决这个问题吗?

<div class="container-fluid">
<section>
<img src="img/Florian.jpg" alt="Florian" class="profilephoto">
<div class="aboutme">
<h3 class="text-center">About</h3>
<p class="text-center primary">Blablabla</p>
</div>
</section>
</div>

最佳答案

The paragraph should remain in the center of the page and the line width should not exceed a certain width.

您可以在段落上使用 margin:auto 以及 width/max-width。这将使它居中。

.aboutme p {
max-width: 80%; /* or your chosen width */
margin: auto;
}

JSfiddle Demo

关于html - 为更宽的屏幕减小段落的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37273487/

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