我的外部css文件无法使用jsp页面

时间:2015-11-26 04:34:13

标签: jsp

我想在我的页面中添加一些css,但我的css无效。

这是我的欢迎档案

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<link rel="stylesheet" href="../CSS/welcome-css.css" />
</head>
<body>

<table id="wel-table">
<tr>
<td><a href="<s:url action="/header/headerHome" />">Log In</a>  </td>
</tr>
</table>

</body>
</html>

this is my directory

2 个答案:

答案 0 :(得分:0)

你试试吗?

 <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    <%@ taglib prefix="s" uri="/struts-tags"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Insert title here</title>
    <link rel="stylesheet" type="text/css" href="../CSS/welcome-css.css" /> 
    </head>
    <body>

    <table id="wel-table">
    <tr>
    <td><a href="<s:url action="/header/headerHome" />">Log In</a>  </td>
    </tr>
    </table>

    </body>
    </html>

答案 1 :(得分:0)

包含CSS的链接标记具有XML结束斜杠。但是您的doctype声明说明了HTML 4.将您的doctype切换为XHTML,或者保持链接标记处于打开状态,如

f_own

此外,您可能希望立即删除紧随其后的空链接标记。

Help from W3Schools