在 JSP 中包含 CSS 文件作为内联样式
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这种指令应该有效,但您需要确定您正在使用的路径:
This sort of directive should work, but you will need to be sure of the path you're using: