使用CSS字符串集属性和内容方法

时间:2012-08-01 17:46:02

标签: css css3 less

我正在为学习目标设置字符串,并使用content方法调用和显示这些项目。除非我专门声明一个静态字符串,否则content方法无法正常工作。这是内容方法的正确语法吗?

&.toc-section .listitem{
    display:none;
    string-set: cnx-learning-objectives content();
}   

&:after {
    display:block;
    background-color: @green;
    content: cnx-learning-objectives content();
    color: red !important;  
}

1 个答案:

答案 0 :(得分:2)

如果您尝试将listitem的内容设置为after元素(我认为这就是您要做的事情),那么我相信这就是您想要的:

&.toc-section .listitem{
    display:none;
    string-set: cnx-learning-objectives content();
}   

&:after {
    display:block;
    background-color: @green;
    content: string(cnx-learning-objectives);
    color: red !important;  
}