Forum Moderators: not2easy
Due to JSF generating the HTML I can't put the style on the tr or td object but only in the span.
I tried code below which is ok with IE but has one bug in Mozilla.
In fact the color is not using the full cell width in Mozilla and so the color effect is not nice looking.
Any idea of what to add/change in the css code to have the background color on all the column width?
HTML:
<table width="100%">
<tr>
<td><span class="orangeCell">my text</span></td>
</tr>
</table>
CSS:
.orangeCell
{
background-color: #FFC149;
width:100%
}