2

我正在为学习目标设置字符串,并使用内容方法来调用和显示这些项目。除非我特别声明一个静态字符串,否则 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;  
}
4

1 回答 1

2

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

&.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;  
}
于 2012-08-01T22:57:37.010 回答