Thymeleaf,请勿在数字中插入换行符

时间:2018-11-19 12:30:54

标签: java thymeleaf whitespace

我在百里香中有以下一行

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

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

160
120.3292

是否可以使用“ &nbsp;”类型的字符或其他方式?

1 个答案:

答案 0 :(得分:1)

使用CSS防止换行。 (white-space: nowrap应该可以做到这一点。)

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