I have fiddle
Note that the contents of the TD are completely arbitrary. Can I change the label styles to extend the background of the label symbol to the end of the TD cell? Please note that the green background should remain as it is.
<table border=1 width=500>
<tr>
<td>
<span>foo and bar</span><br />
<span>foo and bar</span>
<span class="mark">ΒΆ</span>
</td>
</tr>
</table>
CSS
.mark {
background: red;
}
source
share