1

在来自外部项目的每个 css 中,我必须像这样替换 url:

url(image.jpg)

url(../image.jpg)

也许这与我必须在斜杠中包含 css 的方式有关:

<link rel="stylesheet" type="text/css" href="/project1/style.css/"  th:href="@{ /project1/style.css/ }" />
4

1 回答 1

2

你不需要包括额外的/

试试这个:

<link rel="stylesheet" type="text/css" href="/css/style.css"   th:href="@{ /css/style.css }" />
于 2012-09-18T09:04:42.207 回答