首页 > 解决方案 > 如何在边框内居中文本?

问题描述

我将如何移动文本以使其位于中心

这就是我的样式表中的内容

.box {
  background-color: red;
  color: white;
  text-align: center;
  border: 1px solid white;
  font-family: Arial;
  height: 30px;
}

标签: htmlcss

解决方案


您可以使用 flex 或其他时髦的样式 - 但最简单的方法是使用设置为与容器高度相同的行高。

.box {
  background-color: red;
  color: white;
  text-align: center;
  border: 1px solid white;
  font-family: Arial;
  height: 30px;
  line-height: 30px
}
<div class="box">This is centered text</div>


推荐阅读