1 pièce(s) jointe(s)
[HTML] Afficher les bordures autour des cellules
Voila, j'ai une table. Je ne veux pas afficher les bordures de contour de la table, mais seulement les bordures autour de chacune des cellules.
En l'état actuel des choses, ce qui me dérange, c'est la ligne de contour la plus extérieure. J'aimerai bien ne plus la voir apparaître.
Comment faire? (si c'est possible)
Voici le code de mon tableau :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
|
<html>
<head>
</head>
<body>
<table border=1 CELLPADDING=3 CELLSPACING=1>
<tr align="center">
<td>
</td>
<td BGCOLOR="#264276"><FONT COLOR="white" >
Colonne n°1
</td>
<td BGCOLOR="#264276"><FONT COLOR="white">
Colonne n°2
</td>
<td BGCOLOR="#264276"><FONT COLOR="white">
Colonne n°3
</td>
</tr>
<tr align="center">
<td BGCOLOR="#264276"><FONT COLOR="white">
A
</td>
<td>
----
</td>
<td>
B
</td>
<td>
C
</td>
</tr>
<tr align="center">
<td BGCOLOR="#264276"><FONT COLOR="white">
Ligne n°1
</td>
<td>
D
</td>
<td>
E
</td>
<td>
F
</td>
</tr>
<tr align="center">
<td BGCOLOR="#264276"><FONT COLOR="white">
Ligne n°2
</td>
<td>
---
</td>
<td>
G
</td>
<td>
H
</td>
</tr>
<tr align="center">
<td BGCOLOR="#264276"><FONT COLOR="white">
Ligne n°3
</td>
<td>
---
</td>
<td>
I
</td>
<td>
J
</td>
</tr>
<tr align="center">
<td BGCOLOR="#264276"><FONT COLOR="white">
<strong>Ligne n°4</strong>
</td>
<td>
K
</td>
<td>
L
</td>
<td>
M
</td>
</tr>
<tr>
</tr>
<tr align="center">
<td colspan="3">
<strong> Ligne n°5 partielle </strong>
</td>
<td>
N
</td>
</tr>
<tr align="center">
<td colspan="3">
<strong> Ligne n°6 partielle </strong>
</td>
<td>
O
</td>
</tr>
</table>
</body>
</html> |