If I have this html
<table class="actList">
<tr>
<th> a </th> <th> a </th>
</tr>
<tr>
<td> a </td> <td> a </td>
</tr>
</table>
and this css
.actList {
background-color: rgb(235, 239, 249);
width: 100%;
}
th.activity, th.actList {
text-align: left;
font-weight: normal;
padding: 0.4em 1em 0.4em 0.3em;
}
Then I would expect that the last line means, that all <th>'s in the table with class="actList" would get this style. But it doesn't as seen here
http://jsfiddle.net/littlesandra88/k3Bv5/
What would the proper CSS for th.actList look like?
Can it be done without adding a class to each <th>?