css image url
The JSP page introduces the style app.css through <%@ include file="/include/meta.jsp"%> The image path setting is wrong
Image path setting error
You can already access the image through this path http://localhost:8777/diao/images/login/logo.jpg
Then how should you set the path
url(/diao/images/login/logo.jpg) How about this.
There is a problem with the path. If you reference the file, the path must be calculated according to the referenced file. background:url(../images/login/logo.jpg) Try
image path problem.
You try this, just change the path like I did
.login .login_logo {height:55px;background:url(~/images/login/logo.jpg) no-repeat 10px 0px;}
Image path problem