JSFiddle - React, Tailwind, and code Playground

by Samuel Souza

HTML

<table width="100%" border="1">
			<tr ng-class="{ 'box-cinza' : troca }">
				<td><input type="checkbox" ng-model="troca"> </td>
				<td>a</td>
				<td>b</td>
				<td>c</td>
				<td>d</td>
			</tr>
			
		</table>

CSS

.box-cinza {
			background-color: #666;
			color: white;
		}