DEV Community

Sekti Wicaksono
Sekti Wicaksono

Posted on

CSS Battle - #2 Carrom

HTML

<div class="column">
    <div class="box"></div>
    <div class="box"></div>
</div>
<div class="column">
    <div class="box"></div>
    <div class="box"></div>
</div>
Enter fullscreen mode Exit fullscreen mode

CSS

  body {
    background: #62374e;
    margin: 50px;
    display: flex;
    justify-content: space-between;
  }
  .column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  } 
  .box {
    width: 50px;
    height: 50px;
    background: #fdc57b;
  }
Enter fullscreen mode Exit fullscreen mode

Top comments (3)

Collapse
 
goncalveskamryn63 profile image
goncalveskamryn

Carrom disc pool mod apk offers an exciting twist to the traditional carrom board game, providing users with additional features and customization options that enhance their gaming experience. With this modified version, players can enjoy unique gameplay elements, unlock exclusive features, and explore various customizations not available in the standard version. It opens up new possibilities for enthusiasts to engage with the game in creative ways, adding an extra layer of enjoyment to the already popular Carrom Pool experience.

Collapse
 
aneesdhansey profile image
Anees Dhansey

I made one a while back on CodePen! codepen.io/aneesdhansey/pen/RwPzQmB

Collapse
 
flyingduck92 profile image
Sekti Wicaksono

amazing stuff