tags:

views:

52

answers:

1

How to make a grid (like graph paper grid) with just css? I just want to make a virtual grid paper with only using CSS. Thanks in advance for the help.

+4  A: 

What you can do is grab a grid image like this one

alt text

then tile it with CSS

#background {
  background: url('path/to/grid-image.png');
}

So yeah, not only CSS - you also need the image, but the solution should be quite clean. See it in action here: http://jsfiddle.net/bhVhV/

Yi Jiang