CSS Battle: #2 - Carrom

CSS Battle: #2 - Carrom

In this article, I will solve a Carrom CSS Challenge on CSS Battle. Let's look at the problem first.

Problem

We need to create the following container by using CSS Properties only: Simply Square

Solution

So now look at the Solution and how we are going to achieve this.

HTML

First, create an HTML for this, I've used the two containers to do that. you can use Pseudo-classes as well.

<div class="box">
  <span></span>
  <span></span>
  <span></span>
  <span></span>
</div>

CSS

Now let's style the containers.

body {
  margin: 0;
}
.box {
  display: flex;
  flex-wrap: wrap;
  column-gap: 100px;
  background: #62374e;
}
.box span {
  width: 50px;
  height: 50px;
  background: #fdc57b;
  align-self: center;
  margin: 50px;
}

Codepen

Note: Codepen might be different from the real shape but the code is correct with 100% match

Wrapping up

If you like this then don't forget to ❤️ it. And I'll see you in the next article. See you soon.