我想要一条虚线来填充两个单词/句子之间的空格。我需要自动调整单词之间的虚线。但在小提琴中的结果并不清楚。
http://jsfiddle.net/shagun_jsfiddle/Z4DCH/6/
HTML
<div style="position: relative; float: left;overflow: hidden; width: 1000px;" id="index1">
<span class="left-side">Hello</span>
<span class="right-side" >Dotted line</span>
</div>
<div style="position: relative; float: left;overflow: hidden; width: 850px; " id="index2">
<span class="left-side">Hello</span>
<span class="right-side" >Dotted line</span>
</div>
CSS
.left-side{width: auto;
max-width: 26%;
min-width: 0%;
text-align: justify;
background-color: transparent;
display: inline-block;}
.left-side:before{float: right;
width: 0;
white-space: nowrap;
line-height:11px;
content: ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . . . . " ;
}
.right-side{width: auto;
max-width: 26%;
min-width: 0%;
background-color: transparent;
float: right;
display: inline-block;}
在图片中,圆圈内容宽度固定为最大和最小宽度。所以点应该是自动调整的。并且不应重叠。