Hi,
We are working on creating a table component through RTE. On each cell of the table we are allowed to add one style class through cell properties.
But when I am adding another style to that cell it over-rides the previous style class.
For eg, when I add style=heavy-band to my cell It will look like this
<table width="100%" cellspacing="0" cellpadding="1" border="1" class="heavy-band">
But If I add style=light-band it over-rides
<table width="100%" cellspacing="0" cellpadding="1" border="1" class="light-band">
Is there any possible way available through which I can add both the styles to my cell.