gpt4 book ai didi

html - 换行时段落聚类

转载 作者:太空宇宙 更新时间:2023-11-03 20:31:54 25 4
gpt4 key购买 nike

当出现换行符时,如何使我的段落不将所有文本集中在一起?

我还想换行。但它应该以更有序的方式进行。

我附上了一张图片来展示。

enter image description here

<div class='se'>
<p>Aerospace/Defense - Major Diversified</p>
<p>Aerospace/Defense Products & Services</p>
<p>Cement</p>
<p>Diversified Machinery</p>
</div>

.sector3 {
position: absolute;
width: 33%;
height: 100%;
padding-left: 15px;
line-height: 40%;
}

最佳答案

删除改变每行高度的 line-height: 40%;

要更改 p 之间的空间,请使用 margin:5px 0; 作为您父级的 p。

如果您想了解更多关于 line-height 的信息,请阅读 this .

工作 DEMO .

.one {
width: 33%;
height: 100%;
padding-left: 15px;
line-height: 40%;
}
.two {
width: 33%;
height: 100%;
padding-left: 15px;
}
.two p {
margin:5px 0;
}
<h2>
Yours:
</h2>
<div class="one">
<p>Aerospace/Defense - Major Diversified</p>
<p>Aerospace/Defense Products Services</p>
<p>Cement</p>
<p>Diversified Machinery</p>
</div>
<h2>
Without 'line-height: 40%':
</h2>
<div class="two">
<p>Aerospace/Defense - Major Diversified</p>
<p>Aerospace/Defense Products Services</p>
<p>Cement</p>
<p>Diversified Machinery</p>
</div>

关于html - 换行时段落聚类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40285770/

25 4 0
文章推荐: python - 从Python中随机目录的文本文件中读取数据
文章推荐: python - 如何修复Python递归函数
文章推荐: python - 在 django Updateview 中保存表单集时出现问题
文章推荐: javascript - 如何将一个