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
If you want to set 4 sides separately use:
border-width: 1px 2em 5px 0; /* top right bottom left */ border-style: solid dotted inset double; border-color: #f00 #0f0 #00f #ff0;