如何在 HTML 中居中​​对齐 pre 标记

发布于 2024-07-17 18:50:31 字数 181 浏览 6 评论 0原文

我正在尝试使用 pre 标签在博客上发布一些代码。 像这样的东西:

void function(){return 0;}

现在我希望所有这些代码都居中对齐。 我不仅谈论文本,还谈论它周围的边框。 宽度当前设置为 60%。 所以我希望所有这些都中心对齐。 有办法做到吗?

I'm trying to post some code on a blog using the pre tag. Something like this:

void function(){return 0;}

Now I want all this code to be center aligned. I'm not talking just about the text but also about the border around it. The width is set currently to 60%. So I want all of this to be center aligned. Is there a way to do it?

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

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

发布评论

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

评论(1

忆伤 2024-07-24 18:50:31

添加自定义 CSS

类,将字体设置为 courier (10pt),并设置左右边距,使其位于页面中央。

.code {
  font-family:courier;
  font-size: 10pt;
  margin: 5px; border: 1px solid black;
} 

然后按如下方式调用它:

<div class="code">Your Code Here</div>

神奇的事情发生在 margin 部分。 您可以设置所有 4 个属性,但如果您只设置一个,那么它 会使其成为该属性的边距大小一直围绕

Add a custom CSS <div> Class that sets font to courier (10pt) and has left and right margins set in so that it's centered on the page.

.code {
  font-family:courier;
  font-size: 10pt;
  margin: 5px; border: 1px solid black;
} 

Then call it as follows:

<div class="code">Your Code Here</div>

The magic happens in the margin section. You can set all 4 attributes, but if you just set one, then it makes it a margin of that size all the way around.

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