Hello,
I am working with file 1: base.css which has this declared in it:
.noWrap {
white-space: nowrap;
}
And file 2: institution.css with this in it:
.cell-grey-lt { background: #DDDDDD; }
From my xhtml file, I am trying to apply both of these in the following line of code:
<td valign="bottom" class="noWrap cell-grey-lt alignRight">5 971</td>
However, only the second style, cell-grey-lt, is applying itself. The numbers, against my wish ARE wrapping. Can someone help? Am I calling the styles incorrectly?
Thank you very much!
I am working with file 1: base.css which has this declared in it:
.noWrap {
white-space: nowrap;
}
And file 2: institution.css with this in it:
.cell-grey-lt { background: #DDDDDD; }
From my xhtml file, I am trying to apply both of these in the following line of code:
<td valign="bottom" class="noWrap cell-grey-lt alignRight">5 971</td>
However, only the second style, cell-grey-lt, is applying itself. The numbers, against my wish ARE wrapping. Can someone help? Am I calling the styles incorrectly?
Thank you very much!