其他分享
首页 > 其他分享> > html css 文本分散对齐,两端对齐

html css 文本分散对齐,两端对齐

作者:互联网

.justify{
    text-align-last:justify;
    text-align:justify;
    /* 这行必加,兼容ie浏览器 */
    text-justify:distribute-all-lines; 
}
<table>
    <tbody>
        <tr>
            <th><th>
            <th><th>
            <th><th>
            <th class="justify"><th>
        </tr>
    </tbody>
</table>

 

标签:last,text,align,distribute,html,对齐,css,justify
来源: https://www.cnblogs.com/shichq/p/16415544.html