欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

使用較少的字符串集屬性和內容方法

李中冰1年前10瀏覽0評論

我正在為學習目標設置字符串,并使用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;  
}

如果您正在嘗試將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;  
}