Simple grid in CSS

by Andrew Holloway

HTML

<div class="grid-background">

</div>

CSS

.grid-background {
  width: 236px;
  height: 236px;
  
  background-color: white;
  background-size: 34px 34px;
   background-image:
    linear-gradient(to right, black 1px, transparent 1px),
    linear-gradient(to bottom, black 1px, transparent 1px)
}