CSS——单行两端对齐

1. 参考网址

https://www.cnblogs.com/rubylouvre/archive/2012/11/28/2792504.html

2. css样式

.justify{
    text-align:justify;
    text-justify:distribute-all-lines;/*ie6-8*/
    text-align-last:justify;/* ie9*/
    -moz-text-align-last:justify;/*ff*/
    -webkit-text-align-last:justify;/*chrome 20+*/
}
@media screen and (-webkit-min-device-pixel-ratio:0){/* chrome*/
    .justify:after{
        content:".";
        display: inline-block;
        width:100%;
        overflow:hidden;
        height:0;
    }
}
.w100{
    width: 100px;
    background-color:aqua;
}

3. html 结构

购买方信息

名称
纳税人识别号
地址、电话
开户行及账号

 

你可能感兴趣的:(CSS)