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
#testDiv{ /* set green border independently on each side */ border-left: solid green 2px; border-right: solid green 2px; border-bottom: solid green 2px; border-top: solid green 2px; }