JSFiddle - React, Tailwind, and code Playground
by icntfan
HTML
<!DOCTYPE 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>Satır 1</td></tr>
<tr><td>Satır 2</td></tr>
<tr><td>Satır 3</td></tr>
</table>
<script>$("tr:first").css("font-style", "italic");</script>
</body>
</html>