I have a tr(table row) that needs to be strike through .. but there is some content which should not apply the css so i have created a separate class for it but it does not seem to work ..
HTML
<tr class="status">
<td class="content" width="100%" align="left" >
<span class="subheading">
sub-Heading
</span>
Content
</td>
</tr>
CSS
.status {
text-decoration: line-through;
}
.status .subheading{
text-decoration: none !important;
}
Any ideas or corrections are welcomed ..