css - Rounded dotted border with gradient -
how make rounded dotted border gradient in css3? found borders gradient , dotted borders separately. have implement:
you can set white dotted border on top of gradient image covering border zone. looks request
.test { width: 300px; height: 80px; margin: 10px; border: dotted 10px white; border-radius: 50px; background-image: linear-gradient(white, white), linear-gradient(blue, magenta); background-origin: border-box; background-clip: content-box, border-box; }
<div class="test"></div>
Comments
Post a Comment