如何缩进 元素?详细示例

发布于 2024-10-05 02:06:49 字数 290 浏览 0 评论 0原文

http://htmlpocketreference.11​​0mb.com/taggroups.html

对于上面的网站,我该如何缩进所有代码。我不希望它与段落和标题对齐。我希望它是一级缩进。如果需要,您可以检查我的源代码,CSS 已经嵌入到 html 中。

另外,关于如何改进有什么建议吗?

(注意:我不会发布该网站,我只是练习正确设置所有格式。

http://htmlpocketreference.110mb.com/taggroups.html

For the site above, how would I indent all the code. I don't want it aligned with the paragraph and headings. I want it to be one indent level in. You can check my source if you want and the css is embedded in the html already.

Also, any suggestions on how to improve it?

(Note: I'm not publishing the site, I'm just practicing on getting all the formatting right.

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

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

发布评论

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

评论(3

剩一世无双 2024-10-12 02:06:49

要缩进每个 块,您可以使用类似以下内容:

code{
     display: block;
     margin: 0 40px;
}

仅缩进每个 块的第一行,

code{
     text-indent: 40px;
}

40px 只是一个建议;您可以调整缩进宽度以满足您的视觉需求。

To indent each <code> block, you can use something like:

code{
     display: block;
     margin: 0 40px;
}

To indent only the first line of each <code> block,

code{
     text-indent: 40px;
}

40px is just a suggestion; you can adjust the indentation width to suit your visual needs.

地狱即天堂 2024-10-12 02:06:49

你尝试过这样的事情吗?

code {
position: relative;
left: 20px;
}

Did you try something like this?

code {
position: relative;
left: 20px;
}
ゞ记忆︶ㄣ 2024-10-12 02:06:49

前两个答案得到了正确的方法:

code
{
  display: block;
  margin-left: 40px;
  font-family: monospace; /* I would add this too, as it makes the code more readable. */
}

另外,当您显示代码时(我希望),请尝试 SHJS。祝你好运!

The previous two answers got the methods spot-on:

code
{
  display: block;
  margin-left: 40px;
  font-family: monospace; /* I would add this too, as it makes the code more readable. */
}

Also, as you are displaying code (I hope), try SHJS. Good luck!

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