A voir également:
- Hover dd et dt
- Test dd - Télécharger - Informations & Diagnostic
- Cloner un dd - Guide
- Vba cdate format dd/mm/yyyy ✓ - Forum VB / VBA
- Partition dd - Guide
- Baisser la fatigue d'une dd - Forum jeux en ligne
1 réponse
Salut !
Essaie ça :
Essaie ça :
<!DOCTYPE html> <html> <head> <title></title> <style type="text/css"> #profil-localisation { width: 100%; border-collapse: collapse; background: #CCCCCC; } #profil-localisation th { text-align: left; } #profil-localisation tr:hover { background:#EEEEEE; } </style> </head> <body> <table id="profil-localisation" border=1 cellpadding="10"> <tr> <th>pays :</th> <td>français</td> </tr> <tr> <th>région :</th> <td>ile de france</td> </tr> <tr> <th>ville :</th> <td>paris</td> </tr> <tr> <th>code postale :</th> <td>75012</td> </tr> <tr> <th>distance :</th> <td>je suis à 100 km de toi</td> </tr> </table> </body> </html>