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