1. 程式人生 > >thymeleaf設定css樣式,矩形百分比填充背景色

thymeleaf設定css樣式,矩形百分比填充背景色

 對調查結果進行統計的頁面,在div的style中拼接後臺引數,顯示百分比

<tr th:each="option:*{obj.list}">
	<td th:text="*{option.title}">選項</td>
	<td th:text="*{option.poll}">小計</td>
	<td th:inline="text">
        <div style="float:left;width:160px; height:15px;
            margin:3px 10px 0 10px;border-style:solid;border-width:1px;">
            <div th:style="'background:#5f8dd4;height:15px;width:'+*{option.rate}+''">
            </div>
        </div>
        <span>[[*{option.rate}]]</span>
    </td>
</tr>

顯示效果