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!
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" %>