Is it possible with CSS to do a rollover on a table cell like you can with a link?
i.e.
TD { background-image: image1.gif; }
TD:Hover { background-image: image2.gif; }
If not - does anybody know how you can change the background image of a table cell with a mouseover event? (that works in both IE and Netscape?)
What I am trying to do is build a navigation bar (the difficult way). I have a table with the background of each cell set to the button image. This way I can put text in each cell to simulate the text on the button. I would like to change the button image when the user rolls over the cell or the text.
The simple way would just be to graphically create the buttons with the text ... but my application does not allow me to do that. I have a set of images (up, down buttons) that I need to turn into a navigation bar without graphically editing them.
Hopefully this makes some sense. Thanks for your help.
i.e.
TD { background-image: image1.gif; }
TD:Hover { background-image: image2.gif; }
If not - does anybody know how you can change the background image of a table cell with a mouseover event? (that works in both IE and Netscape?)
What I am trying to do is build a navigation bar (the difficult way). I have a table with the background of each cell set to the button image. This way I can put text in each cell to simulate the text on the button. I would like to change the button image when the user rolls over the cell or the text.
The simple way would just be to graphically create the buttons with the text ... but my application does not allow me to do that. I have a set of images (up, down buttons) that I need to turn into a navigation bar without graphically editing them.
Hopefully this makes some sense. Thanks for your help.