28220 sujets

CSS et mise en forme, CSS3

saluté ...
Je crois de plus en plus que CSS aura ma peau ...mais je persévère ...
Ceci dit là je crois que j'ai besoin de conseils d'experts ...

j'ai un fichier avec une mise en forme sur deux colones dans ce style

<?session_start();?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>espace client</title>

<link href="../conf/styles.css" rel="stylesheet" type="text/css" />
</head>

<body><!-- ++++++++conteneur global++++++++ -->
<div id="global">
<div id="bandeau_haut">
	<img src="../images/m.gif" alt="logo " height="60" width="200" border="0" />
	<img src="../images/cor.gif" alt="logo" height="54" width="200" border="0" />
</div>	
<!-- ++++++++menu en haut++++++++ -->				
<? include('../menu.php'); ?>
<!-- ++++++++contenu de la page++++++++ -->	

	<div id="contenu">
		<div id="fond_gauche">				
				<div id="bandeau_gauche">
				
					<? include ('menu.php'); ?>
				</div>
		
				<div id="milieu">
									
							<br />

							
					
<? 
include ('fiche_client.php'); 
?>
<div id="separateur"> &nbsp; </div>
<? 
include ('affiche_matos.php'); 
?>
<div id="separateur"> &nbsp; </div>
<? 
include ('affiche_logiciel.php'); 
?>
<div id="separateur"> &nbsp; </div>
<? 
include ('affiche_presta.php'); 
?>
<div id="separateur"> &nbsp; </div>

	
								</div>
						</div>					
	</div>
	
	
	<? include('../pied_page.php'); ?>
</div><!-- fin de div id=global --> 

	</body>
</html>


euh ... je crois que je suis obligé de mettre toute ma feuille de style pour que vous compreniez bien l'histoire ... désolé c'est un peu long ...

comment dire ... je précise que c'est mon premier site en CSS ... Smiley biggol
suis un noob quoi ...

bon je me lance
/* nettoyage et remise à 0 de tous les comportements par défaut*/
p, h1, h2, h3, h4, h5 {
padding: 0; 
display: block;

}

h1 { color: #c31212; 
font-size: 13px; 
text-transform: uppercase; 
margin: 0;
}

h2 { color: #c31212; 
font-size: 13px; 
margin: 0;
}

h3 { color: black; 
font-size: 11px; 
font-weight: bold; 
margin: 2px; 
}

body { 
/*background-color: #efefef; */ /* blanc cassé */
position: absolute;
width: 100%;
height: 100%;
background-color: #fff;
font-size: 11px;
text-align: justify;
font-family: Arial, Verdana, Helvetica, sans-serif;
}

textarea, input, select {
     color:#555;
     background-color:#f8f8f8;
     font-size:10px;
     font-family:arial;
     border: 1px solid black;
}

td {
	font-family:  Arial, Verdana, Helvetica, sans-serif;
	font-size: 11px;
	color: #000;
}
.Titre {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 14px;
	color: #000;
	font-weight: bold;
}
a {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 11px;
	color: #000;
	text-decoration: underline;	
	}
a: hover {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 11px;
	color: #001e6d;
	text-decoration: overline;	
	}
	
a: visited{
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 11px;
	color: #6d8196;
}

.PetitLien {
margin: 5px 5px;
text-decoration: underline;
color: #f18f14;
font-size: 9px;
}
/******** CORPS DE PAGE ***********/
div#global {
	margin-left: auto;
	margin-right: auto;
	top:20;
	width: 850px;  
	background-color: #fff;
	text-align: justify;
}

div#bandeau_haut{
position: relative;
width: 850px;

height: 70px;
background-color: #fff;
}


div#menu { 
position: relative;
width: 850px; 
height: 17px; 
padding: 6px 0px 6px 0px;
background-color: #e7e6e6; 
}


#menu a {
color: #5c656e;
width: auto;
margin: 0px 26px 0px 0px;
text-decoration: none;
}


div#contenu { 
z-index:0; 
margin: 10px 0 0 0 ;
width: 850px;
text-align: justify;
background-color: #f0f0ef; 
}


div#fond_gauche {
	margin:0; 
	padding:0px;
	background-position: top left;
	background-image:url(../images/blanc.gif);
	background-repeat: repeat-y;
	
}
div#fond_droite {
	margin:0; 
	padding:0px;
	background-position: top right;
	background-image:url(../images/blanc.gif);
	background-repeat: repeat-y;
	
}
		
div#bandeau_gauche { 
	float:left;
	width:150px;
	margin:0px; 
	padding:10px 0px 0px 10px;	
}

div#bandeau_droite {
	float:right;
	width:150px;
	margin:0px; 
	padding:10px 0px 0px 10px;	

}

div#milieu{
 margin:0 0 0 170px;
 padding:  10px 10px 10px 10px;	
}
 
div#milieu2{
 margin:10px 10px;
}
 
 div#pied_page { 
 clear: both;
width: 830px; 
height: 20px; 
line-height: 20px;	
padding: 0px 10px;
background-color: #888; 
color: #fff;
}
 div#pied_page a { 
color: #fff;
}

 div#pied_page a:hover { 
color: #f18f14;
text-decoration: underline;
}

div#separateur{
 margin: 0;
 padding: 0;
 line-height: 5px;
 height: 5px;
 
}




le problème est le suivant
ma colone de droite ne s'affiche pas de la taille du menu de gauche (qui est assez long)
et sur IE et FF j'ai une sacré différence d'affichage des infos (renvoyées par les fichiers en include )

sur FF chaque fichier include se place sous le précédent
mais sous IE c'est nimporte quoi ...

j'ai essayé de créer une div séparateur avec un clear both mais ça donne rien ...ça me place tout le contenu de droite après le menu ...

là je sèche un peu...
Si vous pouviez me donner un coup de main ce serai super sympas ...
J'envoie des photos d'écran pour illustrer l'histoire Smiley cligne

@++ et merci par avance
Pour illustrer

IE
Donc là c'est nimporte quoi ...
upload/7445-ie.jpg
(edit par Raphaël : merci d'éviter d'afficher des illustrations gigantesques qui déforment le forum sur les tailles d'écran habituelles. Cocher le bouton "vignette" si vous transférez vos images sur le forum)

Là c'est déjà mieux mais j'aimerai que mes rubriques ne soient pas collées les unes aux autres et que mon fond de couleur aille jusqu'en bas à droite ...
FF
upload/7445-ff.jpg (edit par Raphaël : merci d'éviter d'afficher des illustrations gigantesques qui déforment le forum sur les tailles d'écran habituelles. Cocher le bouton "vignette" si vous transférez vos images sur le forum)

merciiiii encore par avance Smiley lol
Modifié par NAS (17 Aug 2006 - 14:04)
bon ... ben j'ai essayé un truc c'est de générer un tableau de 1 colone et n lignes ...et dans chaque ligne je mets un include ... là ça marche ...mais bonjour la mise en page...
franchement j'aimerai bien comprendre ce qui cloche au niveau CSS Smiley decu Smiley decu Smiley decu

personne n'a une petite idée ? je suis sur que j'ai fais plein de fautes dans mon CSS ..c'est pas possible de sortir un css impec pour un débutant non ? Smiley bawling

edit : j'ai aussi remarqué un bug bizare... je peux mettre
50 <br /><br /> et ça ne saute jamais une ligne ...
Pour utiliser un <p></p> pour sauter une ligne je suis obligé d'écrire
<p>&nbsp;&nbsp;&nbsp;</p>
avec 3 &nbsp; ...sinon ça marche pas ...

j'ai pas trouvé pourquoi ... et même si je charge pas ma css ça fait ça ...

++
Modifié par NAS (17 Aug 2006 - 15:04)
personne n'est devin et si tu ne mets pas la page html généré on risque d'avoir du mal à t'aider ....

si je te dis j'ai un problème avec une page HTML dont le code est

<? include("header")?>
<?include("milieu")?>
<?include("bas")?>


est ce que quelq'un pourrait m'aider? Smiley bawling

je caricature mais c'est presque ca... si tu ne veux pas donner le code car les informations sont confidentielles remplace ces infos par du texte quelconque...
d'autant que le code html responsable de ton problème est certainement généré par ce qui est renvoyé par tes include...
lol...
ouep ... C'est pas vraiment confidentiel puisque je suis en phase de test et que les infos sont en "scregnegne" pour le moment...

en fait mes pages include génèrent juste des tableaux html ...
j'ai réussi à "palier" au problème en mettant un css du style


table {
 float: left;
}

et pour le bug des br ben j'ai fait des <br />&nbsp;&nbsp;&nbsp; et là ils sont pris en compte...

j'arrive donc à avoir une mise en page à peu près ok avec ces deux astuces ... mais je ne sais pas si un css du genre sur mes balises tables c'est très top ...

je dais qu'il ne faut plus utiliser de tableaux html en css ... mais j'ai pas le temps de m'y pencher d'avantage pour le moment ... (je le ferai c'est promis) ...

j'essaye de vous envoyer un version du code html rapidement Smiley cligne
merci pour ta réponse Smiley cligne
@+
Modifié par NAS (17 Aug 2006 - 16:45)
voila une code html généré

Donc le problème qui persiste c'est que sur IE si je ne fais pas ma manip css sur les tables en float left ça m'affiche nimporte quoi

attention c'est un peu long ... (désolé)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>espace client</title>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//-->
</script>
<link href="../styles/styles.css" rel="stylesheet" type="text/css" />
</head>

<body><!-- ++++++++conteneur global++++++++ -->
<div id="global">
<div id="bandeau_haut">
	<img src="../images/rr.gif" alt="logo rr" height="60" width="200" border="0" />
	<img src="../images/zz.gif" alt="logo zz" height="54" width="200" border="0" />

</div>	
<!-- ++++++++menu en haut++++++++ -->				
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<div id="menu">

<a href="index.php"> <img src="images/icon/accueil.gif" alt="" height="14" width="14" border="0"> Accueil</a>
	
	 <a href="aa/qq.php"><img src="images/icon/gestion.gif" alt="" height="14" width="14" border="0"> Gestion des sites</a>
	<a href="zz/pp.php"> <img src="images/icon/boutique.gif" alt="" height="14" width="14" border="0"> Boutique</a>

	<a href="ee/oo.php"><img src="images/icon/clients.gif" alt="" height="14" width="14" border="0"> Espaces réservés</a>
<a href="rr/ii.php"><img src="images/icon/stats.gif" alt="" height="14" width="14" border="0"> Statistiques</a>
	 <a href="tt/uu.php"><img src="images/icon/recherche.gif" alt="" height="14" width="14" border="0"> Rechercher</a>
	 <a href="yyy/index.php"><img src="images/icon/admin.gif" alt="" height="14" width="14" border="0"> Administration</a>
	



</div><!-- fin de div id=menu --> <!-- ++++++++contenu de la page++++++++ -->	
  	
	<div id="contenu">

		<div id="fond_gauche">
					<div id="bandeau_gauche">
					
					Sétection d'un utilisateur</p>


  PARTENAIRE  

  <br />


CLIENT</p>


  
<br />
<strong>Client </strong>: Pfyjl (MfyjI)<br />
<img src="../images/fleche.gif" alt="fleche_ged" height="5" width="7" border="0"> <a href="">G&eacute;rer sa fiche signal&eacute;tique</a><br />

<img src="../images/fleche.gif" alt="fleche_ged" height="5" width="7" border="0"> <a href="fj.php">G&eacute;rer ses mat&eacute;riels</a><br />
<img src="../images/fleche.gif" alt="fleche_ged" height="5" width="7" border="0"> <a href="fyj.php">G&eacute;rer ses logiciels</a><br />
<img src="../images/fleche.gif" alt="fleche_ged" height="5" width="7" border="0"> <a href="fj.php">G&eacute;rer ses Prestations</a><br />
<br />

<br />
<strong>

Administration
</strong>
<br /><br /><img src="../images/fleche.gif" alt="fleche_ged" height="5" width="7" border="0"> <a href="gfb.php">G&eacute;rer les clients</a><br><img src="../images/fleche.gif" alt="fleche_ged" height="5" width="7" border="0"> <a href="">Gérer les partenaires</a><br />
<br>
<strong>
Prestations
</strong><br />
	<img src="../images/fleche.gif" alt="fleche_ged" height="5" width="7" border="0"> <a href="dgb.php">Gérer les types</a><br />
<br />

<strong>
Matériels
</strong><br />
	<img src="../images/fleche.gif" alt="fleche_ged" height="5" width="7" border="0"> <a href="dgb.php">Gérer le catalogue</a><br />
	<img src="../images/fleche.gif" alt="fleche_ged" height="5" width="7" border="0"> <a href="dgb.php">Gérer les types</a><br />
	<img src="../images/fleche.gif" alt="fleche_ged" height="5" width="7" border="0"> <a href="">Gérer les Contrats</a>
	<br /><br /><strong>

Visites
</strong>
<br />
	<img src="../images/fleche.gif" alt="fleche_ged" height="5" width="7" border="0"> <a href="dgb.php">Gérer les types</a><br />
	<img src="../images/fleche.gif" alt="fleche_ged" height="5" width="7" border="0"> <a href="db.php">Gérer les techniciens</a><br />
</p>
<p><strong>
Logiciels
</strong><br />
	<img src="../images/fleche.gif" alt="fleche_ged" height="5" width="7" border="0"> <a href="dgb.php">Gérer les logiciels</a><br />

	<img src="../images/fleche.gif" alt="fleche_ged" height="5" width="7" border="0"> <a href="">Gérer les types de contrats</a><br />
	<img src="../images/fleche.gif" alt="fleche_ged" height="5" width="7" border="0"> <a href="db.php">Gérer les types de bdd</a><br />
	<img src="../images/fleche.gif" alt="fleche_ged" height="5" width="7" border="0"> <a href="db.php">Gérer les versions</a><br />
</p>
<p><strong>
Espace Partenaires
</strong><br />
	<img src="../images/fleche.gif" alt="fleche_ged" height="5" width="7" border="0"> <a href="">G&eacute;rer sa fiche signal&eacute;tique</a><br />

	<img src="../images/fleche.gif" alt="fleche_ged" height="5" width="7" border="0"> <a href="">G&eacute;rer la documentation</a><br />
	<img src="../images/fleche.gif" alt="fleche_ged" height="5" width="7" border="0"> <a href="">G&eacute;rer les &eacute;v&eacute;nements</a></p>

				</div>
					<div id="milieu">

						<br />
						<!-- ++++++++On commence le contenu de la page++++++++ -->
<h1><img src="../images/fleche_rouge.gif" alt="" height="10" width="10" border="0"> Fiche signal&eacute;tique</h1>				<table width="99%" border="0" cellspacing="1" cellpadding="0" align="left" bgcolor="#8c9196">
					<tr>
						<td bgcolor="white">
							<table width="100%" border="0" cellspacing="1" cellpadding="4">
								<tr align="left" valign="top" height="20">

									<td width="25%" height="20" background="../images/degradhaut.gif"><strong>Soci&eacute;t&eacute; / Organisme</strong></td>
									<td width="25%" height="20" background="../images/degradhaut.gif"><strong>Contact</strong></td>
									<td width="30%" height="20" background="../images/degradhaut.gif"><strong>Informations</strong></td>
									<td width="20%" height="20" background="../images/degradhaut.gif"><strong>Commentaires</strong></td>
								</tr>

								<tr align="left" valign="top">
									<td width="25%"><strong>Raison sociale</strong> : fyjI<br />
											<strong>Adresse</strong> : adresse fyjI<br />
										<strong>Code Postal</strong> : 13254<br />

										<strong>Ville</strong> : Vfyj<br />
										<strong>Tel</strong> : 0465445684<br />
										<strong>Fax</strong> : 0491584685<br />
										<strong>Site web</strong> : <a href="http://www.dth.fr" target="_blank">http://www.fyj.fr</a>									</td>

									<td width="25%"><strong>Nom pr&eacute;nom</strong> : Pfjnfal <br />
										<strong>Fonction</strong> : Rfyjnd<br />
										<strong>Service</strong> : Pyfjvfyjsal<br />
										<strong>Tel.</strong> : 0491587465<br />

										<strong>Mob.</strong> : 0685742516<br />
										<strong>email </strong>: <a href="mailto:dthal@dth.fr">fjl@coyyjr.fr</a>									</td>
									<td width="30%"><strong>N&deg; Client</strong> : 63464532<br />

										<strong>Suivi par</strong> : 0										<br /><br /><strong>Accepte de re&ccedil;evoir des mails de</strong> : <br />
										
										yfdjh <br />gdhn <br />dg <br />Mgtgys <br />										
									</td>
									<td width="20%">

									etset rsythj srfyth streh sth qsths ethqs ethq ethbe thse th seth steh seth sethsth sethsehbsethsehse he									</td>
								</tr>
							</table>
						</td>
					</tr>
				</table>
				<br />
						<p>&nbsp;&nbsp;&nbsp;</p>	

<p></p>
<p></p>
<p></p>
<h1><img src="../images/fleche_rouge.gif" alt="" height="10" width="10" border="0"> Parc Mat&eacute;riel</h1>
<table width="99%" border="0" cellspacing="1" cellpadding="0" align="left" bgcolor="#8c9196">
	<tr>
		<td bgcolor="white">
			<table width="100%" border="0" cellspacing="1" cellpadding="4">
				<tr align="left" valign="top" height="20">
					<td align="left" valign="top" width="25%" height="20" background="../images/degradhaut.gif"><strong>Mat&eacute;riel</strong></td>

					<td align="left" valign="top" width="25%" height="20" background="../images/degradhaut.gif"><strong>Installation</strong></td>
					<td align="left" valign="top" width="30%" height="20" background="../images/degradhaut.gif"><strong>Contrat</strong></td>
					<td align="left" valign="top" width="20%" height="20" background="../images/degradhaut.gif"><strong>Visites</strong></td>
				</tr>
				<tr align="left" valign="top">
					<td align="left" valign="top" width="25%"><strong>Type</strong> : DUPLICATION CD / DVD<br>

						<strong>Nom</strong> : Signature Z1<br>
						<strong>Quantit&eacute;</strong> : 3<br>
						<strong>N&deg; de s&eacute;rie</strong> : 45358476<br>

					</td>
					<td align="left" valign="top" width="25%"><strong>Install&eacute; le</strong> : 21-08-2006<br />
						<strong>Adrese d'installation</strong> : <br>
						33 rue ici<br>

						mars<br>
						1300<br>
						<strong>Tel </strong>: 4912222<br>
					</td>
					<td align="left" valign="top" width="30%">  Maintenance sur site 48h - Pièces, MO, déplacementsZONE 0 - Pas de zone définie<br />du 19-07-2006<br />au 25-08-2007<br>

					</td>
					<td align="left" valign="top" width="20%">
					Aucune visite n'a encore été éffectuée sur ce matériel<p>&nbsp;&nbsp;&nbsp;</p><br /> </td>
				</tr>
			</table>
		</td>
	</tr>
</table>

<br>
&nbsp;&nbsp;&nbsp;



<table width="99%" border="0" cellspacing="1" cellpadding="0" align="left" bgcolor="#8c9196">
	<tr>
		<td bgcolor="white">
			<table width="100%" border="0" cellspacing="1" cellpadding="4">
				<tr align="left" valign="top" height="20">
					<td align="left" valign="top" width="25%" height="20" background="../images/degradhaut.gif"><strong>Mat&eacute;riel</strong></td>

					<td align="left" valign="top" width="25%" height="20" background="../images/degradhaut.gif"><strong>Installation</strong></td>
					<td align="left" valign="top" width="30%" height="20" background="../images/degradhaut.gif"><strong>Contrat</strong></td>
					<td align="left" valign="top" width="20%" height="20" background="../images/degradhaut.gif"><strong>Visites</strong></td>
				</tr>
				<tr align="left" valign="top">
					<td align="left" valign="top" width="25%"><strong>Type</strong> : IMPRESSION<br>

						<strong>Nom</strong> : Océ 5250 C<br>
						<strong>Quantit&eacute;</strong> : 10<br>
						<strong>N&deg; de s&eacute;rie</strong> : 4947<br>

					</td>
					<td align="left" valign="top" width="25%"><strong>Install&eacute; le</strong> : 08-08-2006<br />
						<strong>Adrese d'installation</strong> : <br>
						25 rue ici<br>

						mars<br>
						1300<br>
						<strong>Tel </strong>: 4912222<br>
					</td>
					<td align="left" valign="top" width="30%">  Maintenance sur site 48h - Pièces, MO, déplacementsZONE 0 - Pas de zone définie<br />du 19-07-2006<br />au 25-08-2007<br>

					</td>
					<td align="left" valign="top" width="20%">
					Aucune visite n'a encore été éffectuée sur ce matériel<p>&nbsp;&nbsp;&nbsp;</p><br /> </td>
				</tr>
			</table>
		</td>
	</tr>
</table>

<br>
&nbsp;&nbsp;&nbsp;








<p></p>
<p></p>
<p></p>
<h1><img src="../images/fleche_rouge.gif" alt="" height="10" width="10" border="0"> Parc Logiciel</h1>
<table width="99%" border="0" cellspacing="1" cellpadding="0" align="left" bgcolor="#8c9196">

	<tr>
		<td bgcolor="white">
			<table width="100%" border="0" cellspacing="1" cellpadding="4">
				<tr align="left" valign="top" height="20">
					<td align="left" valign="top" width="25%" height="20" background="../images/degradhaut.gif"><strong>Logiciel</strong></td>
					<td align="left" valign="top" width="25%" height="20" background="../images/degradhaut.gif"><strong>Installation</strong></td>
					<td align="left" valign="top" width="30%" height="20" background="../images/degradhaut.gif"><strong>ID</strong></td>

					<td align="left" valign="top" width="20%" height="20" background="../images/degradhaut.gif"><strong>Contrat</strong></td>
				</tr>
				<tr align="left" valign="top">
					<td align="left" valign="top" width="25%"><strong>Nom</strong> : ISIDOC LE<br>
						<strong>Version</strong> : 1.0.2.3<br />

						<strong>Expire le :</strong> 15-08-2006					</td>
					<td align="left" valign="top" width="25%"><strong>Install&eacute; le</strong> : 21-08-2006<br />
						<strong>Adrese d'installation</strong> : <br />

						33 rue ici<br />
						mars<br />
						1300<br />
						<strong>Tel </strong>: 4912222<br />
					</td>
					<td align="left" valign="top" width="30%"><strong>ID mat&eacute;riel</strong> : 635464<br />

						<strong>ID Licence</strong> : 68464<br />
						<strong>Clef D&eacute;bloquage</strong> : 6464684</td>
					<td align="left" valign="top" width="20%">
					
 
 1 an<br />+ 15% du prix du logiciel </td>

				</tr>
			</table>
		</td>
	</tr>
</table>

<p>&nbsp;&nbsp;&nbsp;</p>



<p></p><h1><img src="../images/fleche_rouge.gif" alt="" height="10" width="10" border="0"> Prestations de services </h1>

<table width="99%" border="0" cellspacing="1" cellpadding="0" align="left" bgcolor="#8c9196">
	<tr>
		<td bgcolor="white">
			<table width="100%" border="0" cellspacing="1" cellpadding="4">
				<tr align="left" valign="top" height="10">
					<td align="left" valign="top" nowrap width="25%" height="10" background="../images/degradhaut.gif"><strong>D&eacute;but le</strong></td>
					<td align="left" valign="top" nowrap width="25%" height="10" background="../images/degradhaut.gif"></td>
					<td align="left" valign="top" nowrap width="30%" height="10" background="../images/degradhaut.gif"></td>

					<td align="left" valign="top" nowrap width="20%" height="10" background="../images/degradhaut.gif"></td>
				</tr>
				
							<tr align="left" valign="top">
					<td align="left" valign="top" width="25%"><strong>31-07-2006</strong></td>
					<td align="left" valign="top" width="25%">TRAITEMENT DE DOCUMENTS<br />
					</td>
					<td align="left" valign="top" width="30%">  <br>

					</td>
					<td align="left" valign="top" width="20%">
				<a href="admin.php?detail=13">d&eacute;tails >></a> </td>
				</tr>
				
				
								
								<tr align="left" valign="top">
					<td align="left" valign="top" width="25%"><strong>19-07-2006</strong></td>
					<td align="left" valign="top" width="25%">TRAITEMENT DE DOCUMENTS<br />

					</td>
					<td align="left" valign="top" width="30%">  ftgukftgukd<br>
					</td>
					<td align="left" valign="top" width="20%">
				<a href="admin.php?detail=11">d&eacute;tails >></a> </td>
				</tr>



			
				
				
								
							
				
				
								
							</table>
		</td>
	</tr>
</table>

<p>&nbsp;&nbsp;&nbsp;</p>
						
						</div>
				</div>					
	</div>
	
	
	

<div id="pied_page">

			 &copy; MK Ing&eacute;nierie 2006 - <a href="ryj/yh.php">D&eacute;connexion</a>			
</div></div><!-- fin de div id=global --> 

	</body>

</html>


si vous avez une idée Smiley cligne

merci
++
Modifié par NAS (17 Aug 2006 - 17:03)