It is possible to make ONLY the first character set to uppercase with css? (e.g: :first-char selector)
in short: if the text start with a number, do not apply the conversion (capitalize) afterwards
table.evenOdd tr td::first-letter{
text-transform:capitalize;
}
the table
<table class="evenOdd">
<tr>
<td style="width: 50%">question 1</td>
<td><b>100 mm</b></td>
</tr>
<tr>
<td>question 2</td>
<td><b>Success</b></td>
</tr>
<tr>
<td>question 3</td>
<td><b>42 kilometer</b></td>
</tr>
</table>
and the result is
Question 1 | 100 Mm -- nok i want mm
Question 2 | Success -- ok
Question 3 | 42 Kilometer -- nok i want kilometer