Possible Duplicate:
In CSS what is the difference between “.” and “#” when declaring a set of styles?
I am new to web development. may i know the difference between below two CSS styles?
.styleName{
color:red;
}
and
#styleName{
color:red;
}
Thanks!