在 JSP 中包含 CSS 文件作为内联样式

发布于 2024-11-19 06:17:52 字数 201 浏览 2 评论 0原文

我有一个 CSS 文件(“style.css”),我想将其作为内联 CSS 嵌入到 JSP 中。这怎么能做到呢?

我已尝试以下方法,但 CSS 文件未导入:

<style>
  <jsp:include page="style.css" />
</style>

谢谢!

I have a CSS file ("style.css") that I want to embed as inline CSS in a JSP. How can this be done?

I have tried the following, but the CSS file is not imported:

<style>
  <jsp:include page="style.css" />
</style>

Thanks!

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

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

发布评论

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

评论(1

南薇 2024-11-26 06:17:52

这种指令应该有效,但您需要确定您正在使用的路径:

<%@ include file="/path_to/your_css_file.css" %>

This sort of directive should work, but you will need to be sure of the path you're using:

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