2017-10-09 4 views

Répondre

1

Vous pouvez le faire avec l'aide d'étiquette <br> ou <hr> avant chaque arrivée de déclaration.

<div th:each="table: ${mapEntry.value}"> 
    <div> 
     <span th:text="${table}"></span> 
    </div> 
    <br/> 
</div> 
0

mrtasln est correct. Même vous pouvez ajouter un <div>&nbsp;</div> ou définir une feuille de style avec adding padding/margins for bottom.

<div th:each="table: ${mapEntry.value}"> 
    <div> 
     <span th:text="${table}"></span> 
    </div> 
    <div> 
     &nbsp; 
    </div> 
</div>