I have a tr with opacity: 0.1, the td inside of it naturally will respect this opacity and will be transparent.
I wanted to know if there is a way to force the td not to respect the style of tr and have opacity: 1.0.
tr {
background: #e56a54;
width: 100px;
opacity: 0.1;
}
td {
opacity: 1.0;
font-size: 40px;
color: green;
}
<table>
<tr>
<td>
reshad
</td>
</tr>
</table>