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

python - Setting ctypes.Structure default values -

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

java - HTTP Status 500 - No data type for node: org.hibernate.hql.internal.ast.tree.IdentNode -