Align text in a table header

后端 未结 8 2146
生来不讨喜
生来不讨喜 2021-02-06 20:37

It seems align is not working for the th element. Here is my HTML:

8条回答
  •  既然无缘
    2021-02-06 20:47

    In HTML5, the easiest, and fastest, way to center your THcontent is to add a colspan like this:

    Thcontent 
    

    This will work if your table is three columns. So if you have a four-column table, add a colspan of 4, etc.

    You can manage the location furthermore in the CSS file while you have put your colspan in HTML like I said.

    th { 
        text-align: center; /* Or right or left */
    }
    

提交回复
热议问题