Answers for "how to make a 3*3 grid using html,css and javascript"

0

how to make a 3*3 grid using html,css and javascript

.grid {
  display: table;
  border-spacing: 2px
}
.row {
  display: table-row
}
.cell {
  width: 100px;
  height: 100px;
  background: black;
  display: table-cell;
}
.row div:last-child {
  background: blue
}
Posted by: Guest on March-01-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language