For a given div I would like to only display a border on the left, right, top, or bottom side.
div
Currently I have the following, which puts a border on all s
div{ border-left:solid red 3px; border-right:solid violet 4px; border-top:solid blue 4px; border-bottom:solid green 4px; background:grey; width:100px; height:50px }
DEMO