Simple instructions for adding CSS Styles to HTML table TD tags using CSS class:
| <table border="2" bordercolor="#cccccc"> <tr> <td>Your content text is here!</td> </tr> </table> |
2. Locate your <td> tag inside your table tag that you want to apply a style to:
| <table border="2" bordercolor="#cccccc"> <tr> <td>Your content text is here!</td> </tr> </table> |
| <table border="2" bordercolor="#cccccc"> <tr> <td class="purpleData">Your content text is here!</td> </tr> </table> |
| Your content text is here! |