标签: html css jsp jsp-tags jspinclude
我有一个CSS文件(“style.css”),我想在JSP中嵌入内联CSS。怎么办呢?
我尝试过以下操作,但未导入CSS文件:
<style> <jsp:include page="style.css" /> </style>
谢谢!
答案 0 :(得分:2)
这种指令应该有效,但你需要确定你正在使用的路径:
<%@ include file="/path_to/your_css_file.css" %>