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