Use CSS referenced images in JSP pages

Posted by Alex on Stack Overflow See other posts from Stack Overflow or by Alex
Published on 2010-06-16T09:23:47Z Indexed on 2010/06/16 9:32 UTC
Read the original article Hit count: 198

Filed under:
|

I am writing a java servlet (struts/JSP etc). I am trying to style a progress bar using CSS in a JSP page but get this error when using chrome's developer tools:

Resource interpreted as image but transferred with MIME type text/plain.

<%@ include file="../include/css/default.css" %>

And in the CSS file:

background:url(../images/bg_bar.gif) no-repeat 0 0;

Could anyone explain why this is and show how I can use this CSS in my page?

© Stack Overflow or respective owner

Related posts about css

Related posts about jsp