CKEditor:样式的图例按钮

时间:2013-08-18 18:52:18

标签: ckeditor

在我的ckeditor中,我想要一个像粗体按钮的按钮,然后是标签。我怎么能这样做?

无法找到任何相关信息..


我现在的意思是:(确实有效) style.js

CKEDITOR.stylesSet.add( 'default', [
    { name: 'Legend',           element: 'legend' },
}

当我按下传奇风格时,没有任何事情发生..


我现在使用的一个讨厌的替代方案是:

{
    name: 'Legend',
    element: 'span',
    styles: {
        'font-size': '17px',
        '-moz-border-bottom-colors': 'none',
        '-moz-border-left-colors': 'none',
        '-moz-border-right-colors': 'none',
        '-moz-border-top-colors': 'none',
        'border-color': '-moz-use-text-color -moz-use-text-color #E5E5E5',
        'border-image': 'none',
        'border-style': 'none none solid',
        'border-width': '0 0 1px',
        'color': '#333333',
        'display': 'block',
        'font-size': '21px',
        'line-height': '40px',
        'margin-bottom': '20px',
        'padding': '0',
        'width': '100%',
    }
},

但我仍然更喜欢<legend></legend>有人可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

Styles。查看我的previous answer并继续使用类似的代码代码。如果您想扩展内置格式组合,也可能会发现this one有用。