surligner lignes tableau

surligner lignes tableau - HTML/CSS - Programmation

Marsh Posté le 11-06-2004 à 10:56:13    

Salut,
Comment faire pour surligner la ligne d'un tableau lorsque l'on passe  
la souris dessus ?
 
Merci.

Reply

Marsh Posté le 11-06-2004 à 10:56:13   

Reply

Marsh Posté le 11-06-2004 à 11:05:25    

tr:hover {
background-color:#ccc;
}
 
Mais ça ne marche pas sous IE, donc javascript (getElementByTag + onmouseover)

Reply

Marsh Posté le 11-06-2004 à 11:09:47    

ok merci je vais regarder ça :)

Reply

Marsh Posté le 11-06-2004 à 11:31:41    

Code :
  1. function setPointer(theRow, thePointerColor)
  2. {
  3. if (typeof(theRow.style) == 'undefined' || typeof(theRow.cells) == 'undefined')
  4.   return false;
  5.  var row_cells_cnt = theRow.cells.length;
  6. for (var c = 0; c < row_cells_cnt; c++)
  7.  theRow.cells[c].bgColor = thePointerColor;
  8.  return true;
  9. }


---------------
Posté depuis des chiottes, sales. Me gusta.
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed