出于某种原因,当使用虚线边框样式制作线条时,Chrome 会将末端呈现为双点,这看起来很糟糕,尤其是在短线条上:
.text {
border-bottom: 2px dotted #000;
}
<span class="text">Hi</span><br/>
<span class="text">lll</span><br/>
<span class="text">22</span><br/>
即使是简单到border-bottom: 2px dotted #000;
行不通的事情。我看到一些文章建议将左/右边框设置为透明,但这看起来更糟,因为它会切断点的小角。
不过,它在 Firefox 中看起来不错。有什么办法让它在 Chrome 中看起来一样好,还是我不走运?