Trying to apply some basic CSS to my JSP page. The JSP is located at WebContent > WEB-INF > pages > Login.jsp, while the CSS file is at WebContent > WEB-INF > css > Login.css.
Below is my JSP code:
<head>
<link rel="stylesheet" type="text/css" href="../css/Login.css" />
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Login Page</title>
</head>
<body>
<div>
<form method="post">
<table>
<tr>
<td>
//some code
</td>
</tr>
<tr>
<td>
//some code
</td>
</tr>
<tr>
<td>
//some code
</td>
</tr>
</table>
</form>
</div>
</body>
And here is my CSS:
table {
border-width: 1px;
border-color: black;
border-style: solid;
}
No borders are showing around the table despite applying styling. Any insights on why this might be happening?