如何使 <h2> 居中?

新手上路,请多包涵

我有一个 h2 标题文本,其类名为“headertekst”。我想把它放在中心。我尝试使用 margin-left: automargin-right: autowidth: 100% 但什么也没发生。

我可以给它一个 margin-left: 20% 它将居中,但这只是在我的笔记本电脑上。它不会以其他屏幕尺寸和移动设备为中心。

我如何以正确的方式居中?

原文由 Rick van Baalen 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 5.3k
1 个回答

您可以在 h2 中添加样式:

 <h2 style="text-align: center;">Text</h2>

原文由 Geshe 发布,翻译遵循 CC BY-SA 4.0 许可协议

推荐问题