Выберите первые elemnt, есть класс в jQuery
$( ".box" ).first().css( "font-style", "bold" );
Mehrshad Farzaneh
$( ".box" ).first().css( "font-style", "bold" );
<script>
// jquery
$( "tr:first" ).css( "font-style", "bold" );
</script>