我认为这是不可能的——通过 css 操纵字体的字距。你最好的选择是找到一种内置理想字距的字体并使用它。
但是,由于您需要可变字距调整,因此我不得不推荐使用 JS。这将是一个简单的脚本。
html:
<div class='currency comma-delimited'>1,000,000.00</div>
jQuery代码:
var input = $('.currency.comma-delimited').text();
while(input.indexOf(',') != -1) {
//replace each comma with a space
input = input.replace(',',' ');
}
$('.currency.comma-delimited').text(input);
以下基于 CSS 的解决方案很荒谬,您不应该使用它:
html:
<div class='currency'>
1<span class='space-delimited'></span>000</span class='space-delimited'></span>000.00
</div>
CSS:
.currency .space-delimited:after {
content:' ';
display:inline-block;
height:1em;
width:0.5em; /* control the size of the space, essentially the kerning */
}
实际上,您可以将 JS 解决方案与此 CSS 解决方案结合起来,以注入 .space 分隔的 span 代替逗号,从而通过 .space 分隔的 css 为您提供 span 的动态放置和字距控制。
请查看片段以获取组合示例。
var input = $('.currency.comma-delimited').text();
while (input.indexOf(',') !== -1) {
input = input.replace(',', '<span class="space-delimited"></span>');
}
$('.currency.comma-delimited').html(input);
.currency .space-delimited:after {
content: ' ';
display: inline-block;
height: 1em;
width: 0.2em; /* this is your kerning variable! */
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div class='currency comma-delimited'>
1,000,000.00
</div>