<链接>标签不导入 .css

发布于 2024-12-04 07:43:29 字数 361 浏览 0 评论 0原文

我在使用此标签在 eclipse 中的 jsp 中导入 .css 文件时遇到一些问题

<link rel="stylesheet" href="css/style.css" type="text.css">

我的页面结构是如此

WEB-INF
  >jsp
    >css(folder)
      >style.css
    >home.jsp

所以基本上 home.jsp 和 css 文件夹是并行的,一个相对 url 就像我正在使用的那样根据大多数教程应该没问题。

你看到什么问题了吗?

谢谢

I'm having some issue with importing a .css file in my jsp within the eclipse using this tag

<link rel="stylesheet" href="css/style.css" type="text.css">

The structure of my pages is so

WEB-INF
  >jsp
    >css(folder)
      >style.css
    >home.jsp

So basically home.jsp and the css folder are parallels, a relative url like the one i'm using should be fine according to most tutorial.

Do you see some problem?

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

荭秂 2024-12-11 07:43:29
<link rel="stylesheet" href="css/style.css" type="text/css" />

将其更改为斜杠。

<link rel="stylesheet" href="css/style.css" type="text/css" />

Change it to a slash.

A君 2024-12-11 07:43:29

在您的结构中,css 文件夹是 style,在您的链接中,它是 css

<link rel="stylesheet" href="style/style.css" type="text/css">

In your structure the css folder is style and in your link it is css

<link rel="stylesheet" href="style/style.css" type="text/css">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文