I have a table with tr's and on some tr's I have a class named "comment" and on the others class named "something" like that: example
<body>
Hello
<tr class="comment"><td>World</td></tr>
<tr class="something"><td>!!!</td></tr>
<tr class="something"><td>hello</td></tr>
Now I need that the last child of the class "comment" will be with another background. How do I do it? Nothing seems to work for me.