0

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

This is what I have in my stylesheet

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

1 Answers1

0

You can use flex or other funky styling - but the simplest way is to use line height which is set to the same as the height of the container.

.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>
gavgrif
  • 15,194
  • 2
  • 25
  • 27