我在.html文件中添加了以下代码示例:
<div Class="Frame" Style="left:85.8pt; top:198.5pt; width:415.5pt; height:43pt; position:absolute; background-color:rgb(201,201,201); overflow:hidden; border:0px Solid rgb(0,0,0);">
<p Style="text-align:justify; text-align-last:justify; padding-top:0pt; padding-bottom:0pt;">
<span Style="height:14.4pt; width:415.5pt;" class="ln">
<span Style="font-size:12pt; font-family:F0; word-spacing:5.09135818481445em; letter-spacing:0em; color: rgb(0,0,0);">Sample Text Here</span>
</span>
</p>
</div>
但是text-align:justify没有得到应用。
答案 0 :(得分:0)
您应该在span
元素上应用text-align。
<span Style="font-size:12pt; font-family:F0; word-spacing:0.29135818481445em; letter-spacing:0em; color: rgb(0,0,0);text-align: justify;">text</span>
您可以在以下位置查看: http://jsfiddle.net/dkG3Z/2/
答案 1 :(得分:0)
div
{
text-align:justify;
text-justify:inter-word;
}
<!--and then your html would be something like-->
<div>here is some text</div>
当您重新调整浏览器窗口时,您将看到合理的工作方式。第二个属性text-justify:inter-word
控制在调整浏览器大小时文本在文字之间缩放的程度