讓Fckeditor編輯器文字增加【行距】;【line-height】功能
方法如下: 這裏我採用的將編輯器中【樣式】換成【行距】。 第一,在fckconfig.js裏面 將 FCKConfig.CustomStyles = { 'Red Title' : { Element : 'h3', Styles : { 'color' : 'Red' } } }; 替換成 FCKConfig.CustomStyles = { //mark090522 '12px' : { Element : 'span', Styles : {'line-height' : '12px' } }, '14px' : { Element : 'span', Styles : {'line-height' : '14px' } }, '18px' [...]


