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 }" />