Table-like layout without tables

PHOTO EMBED

Fri Feb 04 2022 08:28:38 GMT+0000 (Coordinated Universal Time)

Saved by @sathishnvx #undefined

.table {

  width: 0%;

}

.row {

  display: table-row;

  width: auto;

}

.cell {

  padding: 5px;
10
  display: table-cell;

  width: 25%;

  box-sizing: border-box;

  border: 1px solid #dedede;

}

.top {

  vertical-align: top;

}

.bottom {

  vertical-align: bottom;

}

.middle {

  vertical-align: middle;

}

.left {
content_copyCOPY

https://codepen.io/imelgrat/pen/bNwQEy/