#
我有一些 CSS,其中 CSS 定义中的某些属性以字符开头。
例如,在下面的 CSS 中有两个以 a 为前缀的属性#
(不是颜色值)#line-height
和#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;
}