<div class="grid-lines"></div>

.grid-lines {
  --n: 3; /* number of rows */
  --s: 80px;  /* control the size of the grid */
  --t: 2px;   /* the thickness */

  width: calc(round(down,100%,var(--s)) + var(--t));
  height: calc(var(--n)*var(--s) + var(--t));
  background:  
    conic-gradient(from 90deg at var(--t) var(--t),#0000 25%,#000 0)
     0 0/var(--s) var(--s);
}
Run Pen

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.