gpt4 book ai didi

html - 如何在不删除

标记的情况下加入 HTML 中的段落

转载 作者:行者123 更新时间:2023-12-05 08:15:43 25 4
gpt4 key购买 nike

我已经创建了代码来打印一些数据。

<!DOCTYPE html>
<html>
<body>

<h1>The p element</h1>

<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>

</body>
</html>

这给了我下面的结果:

The p element
This is a paragraph.

This is a paragraph.

This is a paragraph.

但我想做的是在不删除 <p> 的情况下加入这三行标签。

我的预期结果是:

The p element
This is a paragraph. This is a paragraph. This is a paragraph.

最佳答案

如上所述,稍微改变一下结构就可以解决问题。只需将三个 p 元素包装到一个 div 中并使用 flexbox

.wrapper {
display: flex;
align-items: center;
}
<h1>The p element</h1>

<div class="wrapper">
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
</div>

关于html - 如何在不删除 <p> 标记的情况下加入 HTML 中的段落,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74886559/

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