是否可以在 CSS 中控制虚线边框笔画之间的长度和距离?
下面的示例在不同浏览器之间显示不同:
div {
border: dashed 4px #000;
padding: 20px;
display: inline-block;
}
<div>I have a dashed border!</div>
Big differences: IE 11 / Firefox / Chrome
Are there any methods that can provide greater control of the dashed borders appearance?