How to add a vertical line between two 960.gs boxes?
I'm using the 960.gs grid system for a design. What is the best way to add a thin separating vertical line between two boxes? The width and color should be adjustable. My plan is to define a couple of div classes with absolute positions and background color, one for each possible position, and use JQuery to make sure that it has the same height as the surrounding boxes. That seems a bit complicated, though. Is there a better solution? You can implement a border using the pseudo-selector :after and absolute positioning, like so: .line:after { border-right: 1px solid #000000; content: "";