How to align center the text in html table row?

后端 未结 7 2023
不思量自难忘°
不思量自难忘° 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:45

    Try to put this in your CSS file.

    td {
        text-align: center;
        vertical-align: middle;
    }
    

提交回复
热议问题