Simple grid in CSS
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)
}