1

I want to create a shape like this

Behind the number circle

enter image description here

I have already started something but cannot organize my border from bottom

.circle {
  background: yellow;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.shape {
  background: #000;
  display: inline-block;
  border: 10px solid #000;
  border-top-right-radius: 100px;
  border-top-left-radius: 100px;
}
<div class="shape">
  <div class="circle">

  </div>
</div>

Or a link to a fiddle https://jsfiddle.net/4fq95bcj/5/

its a half-circle with bottom-left and bottom-right border longer ..

Aleksandr Belugin
  • 2,149
  • 1
  • 13
  • 19
Teni
  • 45
  • 1
  • 1
  • 6

0 Answers0