I have 4 div with border-radius 50%. They are circles. Between second and third I need to make such as speedometer with gradient. The end of gradient must be transperent and all circles must be transperent too.
Code.
.flex-center {
display: flex;
justify-content: center;
align-items: center;
}
.circle {
border-radius: 50%;
display: flex;
}
.first-circle {
height: 400px;
width: 400px;
border: 2px solid gray;
}
.second-circle {
height: 350px;
width: 350px;
}
.third-circle {
height: 300px;
width: 300px;
border: 29px solid gray;
}
.forth-circle {
height: 250px;
width: 250px;
border: 2px solid gray;
}
<div style="background-color: aqua;" clss="flex-center">
<div class="first-circle circle flex-center">
<div class="second-circle circle flex-center">
<div class="third-circle circle flex-center">
<div class="forth-circle circle flex-center">
</div>
</div>
</div>
</div>
</div>