我遇到以下情况:
<h2>This text is <span>pretty awesome</span></h2>
我试图给出两种不同的风格(只有css):
h2 { font-size: 21px; text-transform: uppercase; line-height: 37px; height: 36px; text-align: right; margin-right: 10px; }
h2 span { font-size: 16px; color: #666666; text-transform: lowercase; }
现在只需调用它就像下面的事情一样,并且只显示一般H2样式:
sIFR.replace(headache, { selector: 'h2', css: ['.sIFR-root { stylesforh2 } '], wmode: 'transparent' });
sIFR.replace(headache, { selector: 'h2 span', css: ['.sIFR-root { stylesforspan } '], wmode: 'transparent' });
这两项都不起作用:
sIFR.replace(headache, { selector: 'h2', css: ['.sIFR-root { stylesforh2 }, span { stylesforspan} '], wmode: 'transparent' });
我是一个sIFR第一时间,我正在做一些愚蠢的错误,但我无法弄明白。有人能告诉我它是如何正确完成的吗?
使用sIFRT第3版,修订版436。
提前Tnx
答案 0 :(得分:0)
显然它只是不适用于span。与em