【问题标题】:How do I center text inside of the border? [duplicate]如何在边框内居中文本? [复制]
【发布时间】:2020-05-13 21:42:27
【问题描述】:

How would I go about moving the text so that it's in the center

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

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

【问题讨论】:

    标签: html css


    【解决方案1】:

    您可以使用 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>

    【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2017-03-05
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2019-09-16
    • 1970-01-01
    相关资源
    最近更新 更多