bonjour à tous...
Alors je vais vous exposer mon problème
Je suis entrain de faire un tableau. Pour améliorer sa lecture, je mets surbrillance la ligne survolé avec la souris. Chaque ligne est composée de plusieurs cellules dont les fonds est une image.(Arrondi gauche, milieu, Arrondi droit).
Pour mon rollover j’utilise un hover est un sélecteur enfant sur les balises TR t TD.ça fonctionne nickel sous Firefox mais sous IE ça coince ... j'ai cherché mais rien trouvé de concluant... donc si vous avez une idée lumineuse...
Code : 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
25
26
27
28 tr { background-color:transparent;} td { background-color:transparent; text-align:left; } .left { height:25px; width:8px; background:right url(icones/line_back_left.png) no-repeat; } tr:hover > .left { background:right url(icones/line_back_left_over2.png) no-repeat; } .middle { background:left url(icones/line_back_mid.png) repeat-x; height:25px; } tr:hover > .middle { background:left url(icones/line_back_mid_over2.png) repeat-x; } .right { background:left url(icones/line_back_right.png) no-repeat; height:25px; width:8px; } tr:hover > .right { background:left url(icones/line_back_right_over2.png) no-repeat; }
d'Avance merci
Partager