.button{
position: relative;
background: #CE3900;
padding: 10px 20px;
display: inline-block;
border-radius: 30px;
color: #FC961E;
}
.button:after{
content: '';
position: absolute;
top: 3px;
left: 3px;
width: calc(100% - 12px);
height: calc(100% - 12px);;
background: #ffffff22;
border: 3px dashed orange;
border-radius: 30px;
}
<div class="button">I am button</div>
Вы действительно должны использовать SVG? или не могли бы вы сделать что-то подобное?
<div class="button">I am button</div>
.button{
position: relative;
background: #CE3900;
padding: 10px 20px;
display: inline-block;
border-radius: 30px;
color: #FC961E;
}
.button:after{
content: '';
position: absolute;
top: 3px;
left: 3px;
width: calc(100% - 12px);
height: calc(100% - 12px);;
background: #ffffff22;
border: 3px dashed orange;
border-radius: 30px;
}