Centering in CSS Grid

后端 未结 7 873
半阙折子戏
半阙折子戏 2020-11-21 07:11

I\'m trying to create a simple page with CSS Grid.

What I\'m failing to do is center the text from the HTML to the respective grid cells.

I\'ve tried placing

7条回答
  •  不知归路
    2020-11-21 07:21

    The CSS place-items shorthand property sets the align-items and justify-items properties, respectively. If the second value is not set, the first value is also used for it.

    .parent {
      display: grid;
      place-items: center;
    }
    

提交回复
热议问题