Я хочу, чтобы внутренняя часть красного круга была белой, в то время как перекрывалась с синим кругом и прозрачна для остальных, чтобы вы могли видеть зеленый цвет.
Я был бы рад, если бы кто-то знал, как с этим справиться.
#bigCircle {
display: flex;
justify-content: center;
align-items: center;
width: 380px;
height: 380px;
border-radius: 50%;
background-color: rgba(11, 122, 30, 0.8);
}
#middleCircle {
display: flex;
justify-content: center;
align-items: center;
width: 240px;
height: 240px;
border-radius: 50%;
background-color: rgba(0,0,250,0.5);
}
.smallCircle {
margin-top: -244px;
margin-left: 1px;
border: solid rgb(226, 85, 20);
width: 13px;
height: 13px;
border-radius: 50%;
background-color:rgba(255,255,255,0);
}
<div id="bigCircle">
<div id="middleCircle">
<div class="smallCircle" />
</div>
</div >