文字左右对齐

326 阅读1分钟

固定宽度的容器中,文字均分于容器中,如图效果

	.info-label{
        width:180rpx ;
        text-align: justify;
        &::after{ // 必须
            content: "";
            display: inline-block;
            width: 100%;
        }
    }