如何实现table表单td标签中的内容两端对齐?td的align属性设置为justify不好用,新手站长网分享td文字两端对齐的方法:
td两端对齐的方法
td标签有个align属性,将align设置为justify不怎么好用,建议使用以下方法:
在td中加入以下style样式即可实现两端对齐:
<style>
td{
border:1px solid red;
text-align:center;
text-align:justify;
text-justify:distribute-all-lines;
text-align-last:justify
}
</style>
示例代码:
<table border="1">
<tr>
<th>两端对齐</th>
</tr>
<tr>
<td style="text-align:justify;text-justify:distribute-all-lines;text-align-last:justify" >我是两端对齐</td>
</tr>
</table>
效果如下: