Thymeleaf,不要在数字中插入换行符

Thymeleaf, dont insert linebreaks in numbers

我在 thymeleaf 中有以下行

<td th:text="${#numbers.formatDecimal(p.position, 0, 'WHITESPACE', 4, 'POINT')}">POSITION</td>

因此为了便于阅读,在长号中使用空格作为分隔符。 否则这会起作用,但现在我在表格中的数字中间有换行符,比以前更难阅读。 像这样:

160
120.3292

有没有办法使用“&nbsp;”类型的字符之类的?

使用css防止换行。 (white-space: nowrap 应该适用于此。)

<td th:text="${#numbers.formatDecimal(p.position, 0, 'WHITESPACE', 4, 'POINT')}" style="white-space: nowrap;">POSITION</td>