After downloading a sample CSS file, I noticed the following entry:
#text-align: right;
The comment beside the entry mentioned that this expression is specifically for justifying it in IE, while
text-align: right;
works for Safari and Chrome. My question is, what does the hash signify in this context?
Thank you!