帮助正确设置 CSS 格式
咕噜。无论如何, 我格式化了所有代码元素,使它们缩进 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
删除
display: 块
。这基本上将span
变成了div
。Remove the
display: block
. That basically turns aspan
into adiv
.