Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
外部プロジェクトのすべての css で、次のように URL を置き換える必要があります。
url(image.jpg)
に
url(../image.jpg)
たぶん、末尾にスラッシュが付いた css を含める必要がある方法に関連している可能性があります。
<link rel="stylesheet" type="text/css" href="/project1/style.css/" th:href="@{ /project1/style.css/ }" />
余分なものを含める必要はありません/
/
これを試して:
<link rel="stylesheet" type="text/css" href="/css/style.css" th:href="@{ /css/style.css }" />