在我的 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>
有人能帮帮我吗?