如何在 HTML 中居中对齐 pre 标记
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加自定义 CSS
类,将字体设置为
courier
(10pt),并设置左右边距,使其位于页面中央。然后按如下方式调用它:
神奇的事情发生在
margin
部分。 您可以设置所有 4 个属性,但如果您只设置一个,那么它 会使其成为该属性的边距大小一直围绕。Add a custom CSS
<div>
Class that sets font tocourier
(10pt) and has left and right margins set in so that it's centered on the page.Then call it as follows:
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.