bonjour à tous, voilà je travail sur un projet en JEE, j'ai créé un projet web dynamique avec le framework struts 2. j'ai aussi créé une page index.jsp
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<%@taglib uri="/struts-tags" prefix="s" %>
<!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">
		<LINK rel="stylesheet" type="text/css" href="style.css">
		<title>Gestion CRM - Identification</title>
	</head>
	<body>
		<s:form action="register" method="post">
			<s:textfield type="text" name="nom" />
			<s:submit value="valider" />
		</s:form>
	</body>
</html>
Mon problème est que lorsque j'exécute le projet, mes mises en forme ne sont pas prises en compte. Voilà ma feuille de style style.css
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
body {
	margin: 0;
	padding: 0;
	align: center;
	text-align: center;
	font: 12px Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #061C37;
	background: #E6E6E6;
	background-repeat:repeat-x;
}
 
html, body {
text-align: center;
}