0

Why doesn't this center the words? I added both justify-content and align-items.

.box {
  display: grid;
  grid-template-rows: 100px;
  grid-template-columns: 100px;
}

#item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-color: black;
  background-color: #FFF8DC;
}
<div class='box'>
  <div id='item'>
    <h4>why doesn't this work</h4>
  </div>
</div>
mplungjan
  • 169,008
  • 28
  • 173
  • 236
Shouko Nishimiya
  • 743
  • 1
  • 5
  • 4

0 Answers0