I have some CSS in which in some properties inside CSS definition starts with #
character.
For example, in the following CSS there are two properties prefixed with a #
(other than a color value) #line-height
and #padding
.free-quote-box h1 {
text-align:center;
vertical-align:top;
line-height:24px;
#line-height:12px;/* First # tag prefix property/
#padding:8px 0 6px 0;/* Second # tag prefix property/
padding:8px 0 0;
}