Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 556 Bytes

File metadata and controls

38 lines (31 loc) · 556 Bytes

#2 - Carrom

💥 Challenge

Carrom

🔎 Link

Try it too and go to battle!

💡 Solution

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


<style>
  body {
    margin: 0px;
    background: #62374e;
  }

  .box {
    display:flex;
    justify-content:space-between;
    flex-wrap: wrap;
  }
   
 .squad {
   width: 50px;
   height: 50px;
   margin: 50px;
   background: #fdc57b;
  }
</style>