我想增加边框笔画之间的距离。我尝试了不同的方法。
例如:在此处输入链接描述
但是当我使用边界半径时它不能正常工作。
在这个JSFiddle中试试
#border {
width: 250px;
height: 100px;
background: yellow;
text-align: center;
line-height: 100px;
background: linear-gradient(to right, orange 50%, rgba(255, 255, 255, 0) 0%), linear-gradient(blue
50%, rgba(255, 255, 255, 0) 0%), linear-gradient(to right, green 50%, rgba(255, 255, 255, 0) 0%),
linear-gradient(red 50%, rgba(255, 255, 255, 0) 0%);
background-position: top, right, bottom, left;
background-repeat: repeat-x, repeat-y;
background-size: 10px 1px, 1px 10px;
border-radius: 30px;
}