htmlファイルで{}の中で改行したい
解決したいこと
springbootで日記帳アプリを作っています。
{}の中で改行したいです。
<div class="m" th:text="*{'タイトル'+ title}"></div>
ここの{}の中で改行したいです。
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link rel="stylesheet" th:href="@{/Dairy.css}" type="text/css">
</head>
<body>
<div th:object="${form}">
<h1 th:if="${title == '削除'}">削除してよろしいですか?</h1>
<div class="mozi"><p th:text="*{'日記'}"><p th:text="${time}"></p></div>
<div class="m" th:text="*{'タイトル'+ title}"></div>
<p class="m"th:text="*{'内 容'+content}" ></p>
<form th:if="${title == '削除'}" th:action="@{/delete}">
<input type="hidden" th:field="*{id}"/>
<div style="text-align: center;">
<input type="submit" class="btn-square" value="削除"/></form>
</div>
<div style="text-align: center;">
<a href="#" class="btn-square"th:href="@{/}">トップへ</a></div>
</body>
</html>
自分で試したこと
brをいれるとエラーになりました。&#010;を試してもダメでした。
よろしくお願いします。
0