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