Is there a way to rotate just the border of the circle around an image, without rotating the image itself?
I am trying to achieve this look, with only the blue border rotating and not the image inside:
https://i.sstatic.net/02az9.png
This is what I have created so far:
#circle2 {
width: 210px;
height: 210px;
background-color: transparent;
border-radius: 100%;
border: 6px solid #337AB7;
border-left: 6px solid transparent;
}
#circle2 img {
display:block;
}
<div id="circle2">
<div class="elementor-widget-container">
<div class="elementor-image">
<img src="https://i.ibb.co/WkdnS0f/BIcon-1.png" class="attachment-large size-large">
</div>
</div>
</div>
https://i.sstatic.net/DC1gZ.jpg
I need assistance in rotating only the blue border surrounding the image, not the image itself.
Your help would be greatly appreciated.