Forum Moderators: not2easy
Sample HTML:
<tr>
<th class="room"><strong>Honeymoon Suite</strong></th>
<td>**the features**</td>
<td><strong>£150<br /> £140</strong></td>
<td><strong>£140<br /> £130</strong></td>
<td><strong>£110<br /> £100</strong></td>
</tr>
Sample CSS:
td {vertical-align: top;}
th {background-color: black;
color: yellow;
}
th.room {background-color: yellow;
color: black;
}
What I want to do is change the second price in the HTML from black to yellow, without introducing a seperate <td>, as the recoloring has to be done within the same cell.
Hope you can help :)