文字两边对齐兼容问题text-align: justify

 在IE以及360浏览器中用text-align: justify不管用,文字会以左对齐的方式显示,要想做到兼容两边对齐需要在样式中写入

.spaceBetween {
            /*display: block;*/
            width: 76px;
            float: left;
            text-align: justify;
            text-justify:distribute-all-lines;
            height: 36px;
            line-height: 36px;
          }
          .spaceBetween:after{
            content:'.';
            width: 100%;
            display: inline-block;
            overflow: hidden;
            height: 0;
          }

猜你喜欢

转载自blog.csdn.net/qq_39598092/article/details/90716096
今日推荐