another css question

I’ve got a div id called “left” - witty I know!

In my style sheet it is defined as


#left, #right
  {
	background-color: #FFFFFF;
	position: absolute; 
	top: 112px; 
 	width: 120px; 	
  }

but there are a couple of properties I want to only apply to this div tag and thus I also:


#left
  { 
	left: 10px;
	border-style:solid; 
	border-width: 1px;
	border-color: #000000; 
  }

This obviously puts a 1px border round the whole thing. Is it possible to only put a border down one side (the right)?

http://www.htmlhelp.com/reference/css/box/border-left-width.html

Basically


border-left-width: 1px

cheers :slight_smile: