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 に答える