1
I need to create a dashed edge as in the example below.
In the fig I defined that the trace would have 8px and the space between them also.
.newItemContainer
border-radius: 8px
border: dashed 1px colors.$stroke
The code above was what I used to make the dashed edge, but I don’t know how to specify the values for stroke size and gap.
Can someone help me?
CSS has no control over the space between dashes. Each browser can render this differently. A width, however, it is rendered in a common way, since it is an accepted property information in all browsers.
– Sam