css - Rounded dotted border with gradient -


how make rounded dotted border gradient in css3? found borders gradient , dotted borders separately. have implement: enter image description here

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

Popular posts from this blog

Ansible - ERROR! the field 'hosts' is required but was not set -

customize file_field button ruby on rails -

SoapUI on windows 10 - high DPI/4K scaling issue -