帮助正确设置 CSS 格式

发布于 2024-10-04 16:32:52 字数 483 浏览 0 评论 0原文

咕噜。无论如何, 我格式化了所有代码元素,使它们缩进 40 像素。现在,我的 之间有换行符?我所有的斜体文本都应该位于各自的代码旁边。现在,他们处于单独的换行符上。

如果您检查我的源代码,跨度具有以下代码:

<span class="taginfo">(<em>deprecated</em>)</span></code>

基本上就是这样。在我将代码格式化为缩进之前,一切都很好。如果有帮助的话,stackoverflow 上的另一位成员帮助我使用以下格式格式化代码:

.substructure code{
 display: block;
 margin: 0 40px;
 line-height: 18px;
 font-size: 13px;
}

.substruct 是我的代码部分的 div id

Grrr. Anyways,
I formatted all my code elements so that they indented 40px. Now, I have line breaks between my <span>? All of my italicized texts are supposed to be next to their respective code. Now, they are on a seperate line break.

If you check my source code, the spans have the following code:

<span class="taginfo">(<em>deprecated</em>)</span></code>

That's basically it. It was fine before I formatted the code to an indent. If it helps, another member on stackoverflow helped me format the code using this:

.substructure code{
 display: block;
 margin: 0 40px;
 line-height: 18px;
 font-size: 13px;
}

.substructure is the div id for my code sections

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝色星空 2024-10-11 16:32:52

删除display: 块。这基本上将 span 变成了 div

Remove the display: block. That basically turns a span into a div.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文