gpt4 book ai didi

html - 如何让 HTML 元素出现在一行中?

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

我想将 H3 和 P 标签成对放在同一行上。我不想使用标签 <table> .

HTML:

<h2>SERVERS:</h2>
<!--I want each set of H3 and P to be on the same line-->
<h3>Server 1 Status:</h3><p id="running">Running</p>
<h3>Server 2 Status:</h3><p id="notRunning">Not Running</p>
<h3>Server 3 Status:</h3><p id="running">Running</p>

CSS:

#running {
color:green;
font-weight:bold;
}
#notRunning {
color:red;
font-weight:bold;
}

我到处搜索,大多数帖子都带有 <table>标记或非常旧并且不起作用。

最佳答案

使用显示:内联

h3,p{
display:inline;
}

关于html - 如何让 HTML 元素出现在一行中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30883952/

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