Hi again Ryan
For the test, I have insert a table in an article (5 x 4)
It happens with all styles in fact.
Moreover, if I select 4 cells (2x2) and apply any style, the style is set... for the line ! Not the cells selected.
For example, I have 2 style : "Alert-danger" that set background in red and alert Dark : doing the same : the style is set for the line of the table, not the selected cells.
Meanwhile, if i have selected only one cell, the style is still here on this cell as the style apply then only for the cell.
To allow you to see the result, here is the table avec my test :
<table>
<tbody>
<tr style="background-color: #c2c2c2; border-width: 1px; border-style: solid; border-color: #ffffff #000000;">
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr style="background-color: #c2c2c2; border-width: 1px; border-style: solid; border-color: #ffffff #000000;">
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr class="alert-danger alert-dark">
<td> </td>
<td style="background-color: #c2c2c2; border-width: 1px; border-style: solid; border-color: #ffffff #000000;"> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
This said, do you know how to achieve my main goal, create new buttons to help some people (I work with people who have understanding issue and focusing and I have to find very simple solution).
Thanks :)
Xavier