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.

Why won't <span> hover work when containing a <tr> in a <table> ?

Here is an example:

html

<p>
    <table>
        <tr><td>
            <a>HOVER</td></tr><span><tr><td>child</td></tr></span></a>
       <tr><td> <span>immediate sibling</span>
           <span>general sibling</span></tr></td>
        </tr>
    </table>
</p>

css

p { font-size:20px; margin:20px; cursor:default; }
a { color:blue; border:3px solid blue; }
span { background:#ccc; }

span:hover { background:yellow; }

http://jsfiddle.net/UAHw7/22/

share|improve this question
2  
Make your markup valid first. – Tim Cooper Jan 6 '12 at 17:55
That's invalid HTML. Your a cannot span cells or rows. – Rudu Jan 6 '12 at 17:56
It is working. When you hover over "immediate sibling" and "general sibling" the background color chnages to yellow as per you CSS span:hover { background:yellow; – Jawad Jan 6 '12 at 17:57

3 Answers

Because a <span> isn't allowed there in the first place.

Use a validator to help you fix your HTML. Then worry about styling it.

share|improve this answer
You are using anchor tag splited over different tr. This is wrong html syntax. Your anchor tag should close first then ur td. – AbhiRoczz... Jan 6 '12 at 17:58

It is invalid for a span to contain a table row; specifically, do not nest <tr> elements inside <span> elements. As noted by Quentin, use an HTML validator (a different one from Quintin's; this allows you to past in HTML for validation).

The HTML in your fiddle is wrong in several ways; an anchor tag spanning multiple tr and td elements, a tr element nested inside a span tag and a bonus (what where you thinking?) tr ending tag. Change your fiddle to this:

<table>
    <tr>
        <td>
            <a>HOVER</a>
        </td>
    </tr>
    <tr>
        <td><span>child</span></td>
    </tr>
    <tr>
        <td>
            <span>immediate sibling</span>
            <span>general sibling</span>
        </td>
    </tr>
</table>

Edit: removed the <p> because it cannot contain block elements (like <table>).

share|improve this answer
<p><table>
<tr><td><span><a>HOVER</a></span></td></tr>
<tr><td>child</td></tr>
<tr><td> <span>immediate sibling</span>
<span>general sibling</span></tr></td>
</tr></table>

Is this you require...

share|improve this answer

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.