Home > other >  How to add Circle shape in a rectangle div
How to add Circle shape in a rectangle div

Time:12-22

I wanted to add a circle shape in the middle of a rectangle div like this:

capture1

Here is the html:

<div ></div>

And with this CSS:

.mainInfo{
  background-color: #fff;
  border: .01rem round #e0e1ed;
  border-radius: 20px;
  color: #585CA1;
}

And this is how the rectangle div looks like:

capture2

So how can I add circle in the middle of this div?

CodePudding user response:

I achieved this by absolute positioning and ::before selector.

HTML:

<div >
  <div >
  </div>
</div>

CSS:

.mainInfo{
  background-color: #fff;
  border: .01rem round #e0e1ed;
  border-radius: 20px;
  color: #585CA1;
  width:100%;
  height:5em;
  box-shadow: 0px 0px 17px -5px rgba(0,0,0,0.75);
  margin-top: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle {
  position: relative;
  width: 8em;
  height: 8em;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 17px -5px rgba(0,0,0,0.65);
}

.circle:before{
    position: absolute;
    content: "";
    width: 15em;
    height: 5em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 100;
}

Link to the Demo

  • Related