固定长度文本两端对齐

before: 

 固定长度文本两端对齐_第1张图片

.text{
  width: 100px;
  text-align: justify;
}
.text::after{
  width: 100%;
  display: inline-block;
  content: '';
}

after: 

固定长度文本两端对齐_第2张图片

 

 

你可能感兴趣的:(固定长度文本两端对齐)