点击这里给我发邮件
点击这里给我发消息

css文字两端对齐

css文字两端对齐

  .title{
    text-align: justify;
    text-align-last: justify;
    text-justify: inter-character;  // edge,firefox下分割字符
    white-space: normal;  // nowrap会使text-align: justify失效
    height: 1em;

    &:after {
      content: '';
      display: inline-block;
      width: 100%;  // 会使text-align-last失效
      height: 0;
      overflow: hidden;
    }
  }

  

posted on 2020-05-11 16:33  菜风少侠  阅读(368)  评论(0编辑  收藏  举报