I want to only show a border on a specific div's left, right, top, or bottom side.
As of right now, I have the following, which creates a border on all sides:
#testdiv {
border: 1px solid;
}
What do I need to do in order to have a border only on the left side?