2
You can produce this result only by using CSS rotating an element and working with its edges. This would avoid you having to insert one more font into your project just to use a character.
.circle {
width: 50px;
height: 50px;
background-image: linear-gradient(to right, #1E90FF, #4169E1);
border-radius: 50%;
position: relative;
}
.arrow {
width: 16px;
height: 16px;
position: absolute;
left: 15px;
top: 12px;
transform: rotate(45deg);
border-bottom: 3px white solid;
border-right: 3px white solid;
}
<div class="circle">
<div class="arrow"></div>
</div>
Vlw brother, that’s right! Thank you
– Clayton
@Clayton if the answer solved your problem you can click to mark as accepted.
– Sergio