css关于div中文字对其左右两端
Posted 木极子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css关于div中文字对其左右两端相关的知识,希望对你有一定的参考价值。
html:
<div style="width: 100px;" class="place">中国</div>
<div style="width: 100px;" class="place">加拿大</div>
css:
.place
text-align:justify;
text-justify:distribute-all-lines;/*ie6-8*/
text-align-last:justify;/* ie9*/
-moz-text-align-last:justify;/*ff*/
-webkit-text-align-last:justify;/*chrome 20+*/
@media screen and (-webkit-min-device-pixel-ratio:0)/* chrome*/
.place:after
content:".";
display: inline-block;
width:100%;
overflow:hidden;
height:0;
效果:
以上是关于css关于div中文字对其左右两端的主要内容,如果未能解决你的问题,请参考以下文章