Why doesn't the opacity work here? I've tried using hex and rgba colors, but nothing changes. Even adding classes to tr and td didn't help...
First attempt:
.done{
background-color: rgba(0,175,51,5);
color:white;
opacity: 50;
filter:Alpha(Opacity=50);
}
Second attempt:
.done{
background-color:#00AF33;
color:white;
opacity: 50;
filter:Alpha(Opacity=50);
}
<table align='left' width='95%' class='childTasks'>
<tr class='done'>
<td id='1' class='childData done' width='15%'>Frank</td>
</tr>
</table>