2016-06-20 18 views

答えて

0

CSS3 Countersを使用するルートがあります。私は剣道エディタに慣れていないので、CSSにpul > liの基本子要素以外の要素を必ず追加してください。

あなたは以下のCSSがエディタ内にロードされるように保存することができます:

body { 
    counter-reset: editor; 
    padding-left: 3em; 
} 
body > p, 
body > ul > li { 
    counter-increment: editor; 
} 
body > p:before, 
body > ul > li:before { 
    content: counter(editor); 
    background: #CCC; 
    position: absolute; 
    left: 1em; 
    height: 100%; 
    width: 2em; 
} 

ファイルに上記を保存して、初期化になり、エディタ内のカスタムCSSを追加するには:

$("#editor").kendoEditor({ 
    stylesheets: ["path_to_your.css"] 
}); 
関連する問題