HTMLtd标签中内容垂直居中
html中表格table的内容垂直居中显⽰ ,在css⽂件中给td指定 text-align: center;vertical-align: middle !important; 即可⽰例
.demo td /*设置表格⽂字左右和上下居中对齐*/
{
text-align: center;
vertical-align: middle !important;
}
<table class='demo'>
<tr>
css设置文字垂直居中<td>
表格⽂字左右和上下居中对齐<br/>
表格⽂字左右和上下居中对齐
</td>
<td>表格⽂字左右和上下居中对齐</td>
<td>表格⽂字左右和上下居中对齐</td>
</tr>
</table>
效果图

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。