gpt4 book ai didi

html - 通过 CSS 使这些元素内联/在一行中

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

我的 Joomla CMS 中的一个模块生成以下代码:

<li id="myid" clas="">
<span>
<strong>1.</strong>
</span>

<dl>
<dt>
<span>Some text</span>
</dt>
</dl>
</li>

这不能在 html 中编辑,因为它是通过多个插件创建的。有没有办法让“Some text”出现在“1”的右边。通过 CSS。我试过类似的东西:

li {
display: inline;
}

这没用。你有什么建议吗?非常感谢!

最佳答案

你需要设置dldt显示为inline,因为它们默认是block:

#myid dl, #myid dt {
display: inline;
}

关于html - 通过 CSS 使这些元素内联/在一行中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9121569/

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