色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

使用較少的字符串集屬性和內(nèi)容方法

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

我正在為學習目標設置字符串,并使用content方法來調(diào)用和顯示這些項目。除非我明確聲明一個靜態(tài)字符串,否則內(nèi)容方法不能正常工作。這是內(nèi)容方法的正確語法嗎?

&.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的內(nèi)容設置到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;  
}