JSFiddle - React, Tailwind, and code Playground
HTML
<style>
td { color:blue; font-weight:bold; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<body>
<table>
<tr><td>Row 1</td></tr>
<tr><td>Row 2</td></tr>
<tr><td>Row 3</td></tr>
</table>
<script>$("tr:last(2)").css("font-style", "italic");</script>