How to align center the text in html table row?

后端 未结 7 2036
不思量自难忘°
不思量自难忘° 2020-12-07 17:05

I am using an HTML

and I want to align the text of
to the center in each cell.

How do I center align the text hori

7条回答
  •  情歌与酒
    2020-12-07 17:40

    Selector > child:

    .text-center-row>th,
    .text-center-row>td {
      text-align: center;
    }
    Text Text Text Text
    Text Text Text Text
    Text Text Text Text

提交回复
热议问题