Donald T
Donald T

Reputation: 10667

Include a CSS file as inline style in a JSP

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!

Upvotes: 1

Views: 9414

Answers (1)

Ben
Ben

Reputation: 7597

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

Upvotes: 2

Related Questions