I want to set an image around a round div as border. The round div is created by border-radius:50%
.
CSS:
.circ {
border-radius: 50%;
border: 15px solid transparent;
padding: 15px;
border-image-source: url(border.png);
border-image-repeat: round;
border-image-slice: 30;
}
HTML:
<div class="circ"></div>
This is my div:
Border:
And finally I want this: