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
| /*ton css au depart*/
.normal {
background:#000000;
width:144px ;
height:53px ;
cursor:pointer ;
background-image : url(uneimage.jpg) ;
background-position : 0px 0px;
background-repeat: no-repeat ;
float:left;
}
/*ton css onMouseOver*/
.quand_mouse_over {
background:#000000;
width:144px ;
height:53px ;
cursor:pointer ;
background-image : url(uneautre.jpg) ;
background-position : 20px 0px;
background-repeat: no-repeat ;
float:left;
}
/*ton css onMouseOut*/
.quand_mouse_out {
...
} |