help me please !!!!petit probleme html !!!! code inside - Programmation
Marsh Posté le 04-03-2002 à 15:57:29
je parle bien evidement de la petite ligne noir autour du tableau et pas de la taille du bord (border)
[jfdsdjhfuetppo]--Message édité par case--[/jfdsdjhfuetppo]
Marsh Posté le 04-03-2002 à 16:03:29
Normalement ça peut arriver quand tes tags ne sont pas formés correctement... mais la ça n'a pas l'air d'etre le cas
hihi
Marsh Posté le 04-03-2002 à 16:14:18
bon plus simple la meme chose avec un code tout pitit :
<html>
<head>
<title>Untitled Document</title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table cellspacing="1" cellpadding="1" width="414" bgcolor="#000000"
border=0>
<tr>
<td bgcolor=#ffffff>
<p style="MARGIN-LEFT: 10px"><b>Architectures</b></p>
</table></body>
</html>
Marsh Posté le 04-03-2002 à 16:20:02
ben ton <tr> est pas fermé par un </tr> -> tes tags sont mal formés...
hihi
Marsh Posté le 04-03-2002 à 16:21:09
dans mon bouquin css ils donnet les valeurs en in cm ou % mais pas en px...
Marsh Posté le 04-03-2002 à 16:30:42
bon encore plus simple ::
<html>
<head>
<title>Untitled Document</title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table cellspacing="1" cellpadding="1" width="414" bgcolor="#000000"
border=0>
<tr>
<td bgcolor=#ffffff>
<b>Architectures</b></td></tr>
</table></body>
</html>
heeeeeellllllllppp
comment voir ce contour noir sous netscape ???
Marsh Posté le 04-03-2002 à 16:47:57
Là je crois que tu va avoir du mal. Je te conseille ( je sais c'est un peu lourd, mais ca marche) de faire une table qui englobe ta table actuelle
<html>
<head>
<title>Untitled Document</title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table cellpadding=3 cellspacing=1 bgcolor=#000000><TR><TD>
<table cellspacing="0" cellpadding="0" width="414" bgcolor="#000000" border=0>
<tr>
<td bgcolor=#ffffff>
<b>Architectures</b></td></tr>
</table></TD></TR></TABLE></body>
</html>
Marsh Posté le 04-03-2002 à 16:55:09
merci lord ii
et tous les autres !!
c bon !!! ca marche table/table
Marsh Posté le 04-03-2002 à 15:44:11
salut,
j'ai une petit probleme : le contour de ce tableau disparait sous netscape 4.7 comment faire pour le voir ???
<html>
<head>
<title>Untitled Document</title>
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table cellspacing=1 cellpadding=1 width=414 bgcolor=#000000
border=0>
<tbody>
<tr>
<td bgcolor=#ffffff>
<p style="MARGIN-LEFT: 10px"><b>Architectures</b></p>
</td>
</tr>
<tr>
<td bgcolor=#ffffff>
<table cellspacing=1 cellpadding=5 width=410 border=0>
<tbody>
<tr>
<td>
<p> </p>
<p> </p>
<p> </p>
<p style="MARGIN-LEFT: 10px; MARGIN-RIGHT: 3px"> </p>
<p style="MARGIN-LEFT: 10px; MARGIN-RIGHT: 3px"> </p>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</body>
</html>
[jfdsdjhfuetppo]--Message édité par case--[/jfdsdjhfuetppo]