我正在制作带有输入字段的html表单。如果我使用字母和数字,则字母间距不正确。如何确保字母间距始终良好?
不可
差(字母间距):
input{
margin: auto;
display: block;
background: transparent;
height: 76px;
border: none;
text-align: left;
font-family: "Avenir", sans-serif !important;
font-weight: 500;
font-size: 30px;
width: 600px;
letter-spacing: 49px;
padding-left: 30px;
}
<div class="coupon">
<h3 class="widget-title bluetext">Coupon</h3>
<div class="couponwrap">
<input type="text" id="ticket-number" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" maxlength="8" minlength="8">
<div class="cursor-hide"></div>
</div>
</div>
我该如何解决这个问题?
答案 0 :(得分:0)
正如评论中所述,您应该使用像Courier这样的单空格字体。 Avenir的字符(和其他非单倍间距字符)每个字符都有唯一的水平空间。
如果绝对需要Avenir,你可以在输入时使用javascript自动递增的多个输入。