Hi,
we are using CKeditor latest version. The Tables are not coming in fully outlined. Would rather the outline and also all the cells of the table be bold black lines than what is available in this editor. Please suggest a way to get this done. Aslo need to persist when we save the editor contents.
You can style tables however
You can style tables however you want. Check this guide.
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
table outlines
in styles.js that is available in ckeditor lates version there are multiple styles available as
{
name: 'Compact table',
element: 'table',
attributes: {
cellpadding: '5',
cellspacing: '0',
border: '2',
bordercolor: '#ccc'
},
styles: {
'border-collapse': 'collapse'
}
},
{ name: 'Borderless Table', element: 'table', styles: { 'border-style': 'hidden', 'background-color': '#E6E6FA' } },
As you mentioned above how to set styles when a new table is crated to default 1 px solid black. please provisde an working example
I want to have when any table is created all its c=otline should be 1 px solid black
please look into this
please look into this