我正在为学习目标设置字符串,并使用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;
}
答案 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;
}