I have a div as follows:
<tr class="section">
<td>some content here</td>
<td class="info">content 2 here</td>
</tr>
css:
.section{
//style here
}
.info{
//another style here
}
In this case, i don't want to apply the section style in the in info.
How to do that?