Hi there, @JasminS ...
Yup...you can do this by editing the HTML code for the table. For example, if you made a table that looked like this:
...the code for that would look like this:
<table border="2" cellspacing="2" cellpadding="2">
<tbody>
<tr>
<td style="background-color: #d2e67c;">Content A</td>
<td style="background-color: #d2e67c;">Content B</td>
<td style="background-color: #d2e67c;">Content C</td>
</tr>
<tr>
<td style="background-color: #63bfc9;">Content D</td>
<td style="background-color: #63bfc9;">Content E</td>
<td style="background-color: #63bfc9;">Content F</td>
</tr>
<tr>
<td style="background-color: #be7fd4;">Content G</td>
<td style="background-color: #be7fd4;">Content H</td>
<td style="background-color: #be7fd4;">Content I</td>
</tr>
</tbody>
</table>
I hope this will help a bit. Sing out if you have any other questions...thanks!
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.