Text alignment on both sides of compatibility issues text-align: justify

 Using IE in the browser 360, and text-align: justify Regardless, the text will be displayed left-justified, in order to achieve compatibility sides aligned in a pattern to be written

.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;
          }

 

Guess you like

Origin blog.csdn.net/qq_39598092/article/details/90716096
Recommended