Basically I will try to make it simple.
I am trying to do something like this (ignore any design aspects except what I state):

I started this on JSFiddle here.
.header-wrapper { display: flex; flex-direction: column; align-items: flex-end; } .header { background-color: #0091cc; border-radius: 20px; height: 100px; width: 90%; margin-bottom: 20px; } .circle { background-color: pink; height: 400px; width: 400px; border-radius: 50%; position: absolute; top: -100px; left: -100px; }
<div class="header-wrapper"> <div class="header"></div> <div class="header"></div> </div> <div class="circle"></div>
The main problem is that I canβt make myself seem that the circle connects through two rectangles and has two different colors, for example, in the image. It still cuts out the rest of the circle that flows from the rectangle.
Hope this makes sense.
Thanks in advance.
html css
Chalko
source share