Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a generic HTML table with some CSS background color styling. When a user hovers over a row, the background color of all cells in that row is changed to a light gray.

I have a cell in my top row that spans three rows. When I hover over the top row, the cell is shaded appropriately. However, when hovering over the second and third rows, the cell is not shaded.

Is it possible to shade the cell within the 2nd or 3rd row? How would I do that?

Relevant code:

style.css

td {
    border: black 1px solid;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px
}

tr:hover td {
    background-color: #DDDDDD;
}

th {
    border: none;
}

table.html

<tr>
    <td>Row 1:Col 1</td>
    <td>Row 1:Col 2</td>
    <td rowspan=3>Row 1/2/3:Col3</td>
</tr>
<tr>
    <td>Row 2:Col 1</td>
    <td>Row 2:Col 2</td>
</tr>
<tr>
    <td>Row 3:Col 1</td>
    <td>Row 3:Col 2</td>
</tr>
share|improve this question

2 Answers

up vote 1 down vote accepted

It can be accomplished using JavaScript like so:

<style type="text/css">
td {
    border: black 1px solid;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px
}

tr:hover td {
    background-color: #DDDDDD;
}

th {
    border: none;
}

</style>
<script type="text/javascript">

function shadeCell( cellName )
{
    document.getElementById(cellName).style.backgroundColor = '#DDDDDD';
}

function unShadeCell( cellName )
{
    document.getElementById(cellName).style.backgroundColor = '';
}

</script>
<table>
<tr onMouseOver="shadeCell('bigCell')" onMouseOut="unShadeCell('bigCell')">
    <td>Row 1:Col 1</td>
    <td>Row 1:Col 2</td>
    <td rowspan="3" id="bigCell">Row 1/2/3:Col3</td>
</tr>
<tr onMouseOver="shadeCell('bigCell')" onMouseOut="unShadeCell('bigCell')">
    <td>Row 2:Col 1</td>
    <td>Row 2:Col 2</td>
</tr>
<tr onMouseOver="shadeCell('bigCell')" onMouseOut="unShadeCell('bigCell')">
    <td>Row 3:Col 1</td>
    <td>Row 3:Col 2</td>
</tr>
</table>

I am not sure how one can accomplish what you want by just plain HTML / CSS. Btw, you can simplify the above JavaScript using jQuery - would save you some typing.

Best, Kamran

share|improve this answer
Hi Kamran, that's a great answer. I was hoping there would be a way to do it using plain HTML/CSS, but I was afraid that, as you say, it might not be possible. I'm going to wait to see if anyone else has any responses, but for now I'm going to try to implement your JavaScript solution. Thanks! EDIT: Just wanted to let you know your JavaScript solution works perfectly. – Rockmaninoff Jan 30 '11 at 16:53
Hey! Sounds great! Glad to be of use! :) – thesocialgeek Jan 31 '11 at 8:50

Which browsers are tested? Does the example work if you remove the rowspan=3 TD? (If it does, this is quite a bug/feature.)

Another way of doing this is using script to alter the classname on TR.

td { background-color: #fff; }
.hover td { background-color: #ddd; }

Might actually be necessary in this case.

share|improve this answer
Hi madr, I'm not sure if I understand your solution. If I remove the Row 1/2/3:Col 3 TD, then the problem doesn't manifest itself. Maybe I worded it a bit weirdly, but basically I want the Row 1/2/3:Col 3 TD to be hovered over when you also hover over Row 2 or Row 3. Currently it only is considered hovered over when you hover over Row 1. – Rockmaninoff Jan 30 '11 at 16:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.