<div class="grid-lines"></div>
.grid-lines {
--n: 3; /* number of rows */
--m: 5; /* number of columns */
--s: 80px; /* control the size of the grid */
--t: 2px; /* the thickness */
width: calc(var(--m)*var(--s));
height: calc(var(--n)*var(--s));
background:
conic-gradient(from 90deg at var(--t) var(--t),#0000 25%,#000 0)
0 0/var(--s) var(--s);
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.