Simple instructions for adding CSS Styles to HTML table TD tags using CSS class:
1. Find the table you wish to apply a TD CSS Class to. Here is a simple table example:
| <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! |