kurogane0508
@kurogane0508 (abe desu)

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

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

1Answer

別要素にしちゃうのが簡単だと思います。

<div class="m">
  <label>タイトル</label>
  <span th:text="*{title}"></span>
</div>
0Like

Comments

  1. @kurogane0508

    Questioner

    できました!
    ありがとうございます!

Your answer might help someone💌