1. 程式人生 > >中文字垂直居中

中文字垂直居中

主要是給td新增一個文字居中顯示的屬性就可以了 text-align: center;line-height:
line-height後面的值就是你的td的高度,這樣才能上下居中
<style>
   .table_style{width: 100%;height: auto;}
    .table_style tr td{text-align: center;height: 30px;line-height: 30px;}
</style>