Bonsoir à tous.
j'ai un tableau qui s'affiche grace au php suivant:
Code php : 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
18
19
20
21
22
23
24
$output = '<table>';
 
while($tab=mysql_fetch_assoc($resultat))
 
{
                $output .= '<td>'.$tab['type'].'</td>';
                $output .= '<td>'.$tab['cat'].'</td>';
	    $output .= '<td><a href="valide.php?id_a='.urlencode($tab  ['id_a']).'">'.$tab['detail'].'</a></td>';
                $output .= '<td>'.$tab['prof'].'</td>';
	   $output .= '<td>'.$tab['reg'].'</td>';
	   $output .= '<td>'.$tab['dep'].'</td>';
	   $output .= '<td>'.$tab['cat'].'</td>';
	   $output .= '<td>'.$tab['tit'].'</td>';
	   $output .= '<td>'.$tab['detail'].'</td>' ;
	   $output .= '<td>'.$tab['pseudo'].'</td>';
 
} 
 
{
 
                $output .= '</tr>';
} 
                $output .= '</table>';
echo $output;
Ce qui me fait un tableau à 10 colonnes par lignes.
Je ne connais pas le Css qu'il faudrait appliquer pour avoir une bordure qui englobe les 10 colonnes sans les séparer, comme s'il s'agissait d'une seule cellule...
Suis super débutant en css..
Merci par avance pour vos tuyaux