View Single Post
  #4  
Old 07-31-2005, 06:49 PM
 
Light Speed Light Speed is offline
 

X-Adept
  
Join Date: Mar 2003
Posts: 921
 

Default

# is an id identifier

.whatever is a class


in your code if you use

Code:
<div id="someName"> Put your lovely content here </div>

and have this in your css
Code:
#someName { border: 1px #FF0000; }

It will reference the id and that div will have a red border of 1 pixel.
Reply With Quote