如何在2个字之间删除较大的空格以证明移动设备中的对齐方式?

时间:2018-07-05 09:46:43

标签: html5 css3

enter image description here我使用了 text-align:justify; ,但有时它在两个单词之间显示了很大的空格。这就是为什么我要尝试为移动设备解决此问题,并使用 text-justify:inter-word; 来删除空间,但无法正常工作的原因。

@media screen and (max-width: 640px) {

.mobile-con {text-align:justify!important; text-justify:inter-word;}

}

HTML

<p style="text-align: justify;" class="mobile-con">
                           Star aims to be the world class consortium of choice by
                            delivering projects within time & budget and to the 
                            required standards of quality by the fusion & best
                            application of human intellect & ethics with the 
                            combination of modern technology. 

                        </p>

我该如何解决?

1 个答案:

答案 0 :(得分:0)

使用word-break: break-all;打破所有单词以适合定义的宽度。