Changer couleur bordure tableau
Résolu
maxdel26
Messages postés
89
Date d'inscription
Statut
Membre
Dernière intervention
-
maxdel26 Messages postés 89 Date d'inscription Statut Membre Dernière intervention -
maxdel26 Messages postés 89 Date d'inscription Statut Membre Dernière intervention -
Bonjour, bon ma question est simple
j'ai ce code (X)HTML
et ce code CSS
Et pourtant je n'arrive pas a changer la bordure du tableau en vert comme je le veux. :(
Y'a t'il un problème ?
j'ai ce code (X)HTML
<table class="tableau-accueil"> <tr class="tableau-accueil_2"> <td ><a class="lien_home_1" href="why mm is different.html">Why Metra Martech is different ?</a></td> <td ><a class="lien_home_2" href="Methods and Techniques.html">Methods and Techniques</a></a></td> <td ><a class="lien_home_3" href="Associations, Institutions and Societies.html">Associations, Institutions and Societies</a></td> </tr> </table>
et ce code CSS
.tableau-accueil{ background:#C6DFFF; border:1px solid green; } .tableau-accueil_2{ border:1px solid green; }
Et pourtant je n'arrive pas a changer la bordure du tableau en vert comme je le veux. :(
Y'a t'il un problème ?
A voir également:
- Changer couleur bordure tableau
- Changer dns - Guide
- Tableau word - Guide
- Tableau ascii - Guide
- Trier un tableau excel - Guide
- Tableau croisé dynamique - Guide
4 réponses
Ce n'est pas au tr qu'il faut appliquer le style
CSS
<table class="tableau-accueil"> <tr> <td ><a class="lien_home_1" href="why mm is different.html">Why Metra Martech is different ?</a></td> <td ><a class="lien_home_2" href="Methods and Techniques.html">Methods and Techniques</a></td> <td ><a class="lien_home_3" href="Associations, Institutions and Societies.html">Associations, Institutions and Societies</a></td> </tr> </table>
CSS
.tableau-accueil td { border:1px solid green; }