1. 程式人生 > >html怎樣讓表格裏面的內容居中

html怎樣讓表格裏面的內容居中

text nbsp span 怎樣 html 上下 屬性 但是 div

html怎樣讓表格裏面的內容居中
 text-align:center;

在表格td中,有兩個屬性控制居中顯示
align——表示左右居中——left,center,right
valign——控制上下居中——left,center,right
這兩個屬性綜合使用,就可以讓單元格的內容上下左右都居中顯示。
但是有的時候吧,會失效,那麽在td中設置text-align為center也可。
td
{
    text-align:center;
}

html怎樣讓表格裏面的內容居中