我有一个文件 FixHome.jsp,它试图显示来自 style.css 的徽标和格式。但是,当我运行 .jsp 文件时,图像不会出现,并且 stye.css 文件的格式也没有实现。
文件位置位于 FixConnections 项目下,如下所示:
/WebContent/FixHome.jsp
/WebContent/Resources/style.css
/WebContent/Resources/needhamlogo2.bmp
我正在使用 Eclipse 并运行 Tomcat 7.0
<html>
<head>
<link rel="stylesheet" href="${pageContext.request.contextPath}/Resources/style.css"/>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Fix Connections</title>
</head>
<body>
<table bgcolor="black" id="shell" height="100%" width="100%">
<tr height="30">
<td bgcolor="white">
<img src="${pageContext.request.contextPath}/Resources/NeedhamLogo2.bmp"/>
</td>
<td bgcolor="white">
FIX Connections
</td>
</tr>
</body>
</html>
如果我正确引用了图像和 .css 文件,请告诉我。