Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> table, td, th { border: 1px solid #ccc; } thead { background-color: #1c87c9; color: #ffffff; } th { height: 30px; text-align: center; } td { padding: 3px 10px; } #table1 { border-collapse: separate; border-spacing: 10px; } #table2 { border-collapse: collapse; border-spacing: 10px; } </style> </head> <body> <h2>Exemple de la propriété border-collapse </h2> <h3>border-collapse: separate;</h3> <p>Quand on utilise "border-collapse: separate", la propriété border-spacing peut être utilisée pour définir l'espace entre les cellules.</p> <table id="table1"> <thead> <tr> <th>Titre</th> <th>Titre</th> <th>Titre</th> <th>Titre</th> </tr> </thead> <tbody> <tr> <td>Quelque texte</td> <td>Quelque texte</td> <td>Quelque texte</td> <td>Quelque texte</td> </tr> <tr> <td>Quelque texte</td> <td>Quelque texte</td> <td>Quelque texte</td> <td>Quelque texte</td> </tr> </tbody> </table> <h3>border-collapse: collapse;</h3> <p>When using the "border-collapse: collapse", the border-spacing property has no effect.</p> <table id="table2"> <thead> <tr> <th>Titre</th> <th>Titre</th> <th>Titre</th> <th>Titre</th> </tr> </thead> <tbody> <tr> <td>Quelque texte</td> <td>Quelque texte</td> <td>Quelque texte</td> <td>Quelque texte</td> </tr> <tr> <td>Quelque texte</td> <td>Quelque texte</td> <td>Quelque texte</td> <td>Quelque texte</td> </tr> </tbody> </table> </body> </html>