How can I change the background column of an html table column when the mouse is over it?
Preferably with css only.
|
How can I change the background column of an html table column when the mouse is over it? Preferably with css only. |
|||
|
|
|
Only works for cells or rows, sorry. e.g.
There are JavaScript solutions available but nothing in CSS right now will do what you want because of the limitations of selectors.
|
|||
|
|
This can be done using CSS with no Javascript. I used the Firefox doesn't (yet) recognize Demo: http://jsfiddle.net/ThinkingStiff/2XeYe/ Output:
CSS:
HTML:
Firefox Workaround:
|
|||||||||||
|
|
I have a more simple solution (Live example: http://jsfiddle.net/q3HHt/1/) HTML:
CSS:
jQuery:
Live example: http://jsfiddle.net/q3HHt/1/ |
||||
|
|
|
I do not think there is a clean HTML + CSS way to do this. Javascript is an alternative, for example the jQuery tableHover plugin |
|||
|
|
|
I had a similar problem where I had too many columns to display on screen. VIA PHP, I turned each row into a 1 x column table. So, n rows = n tables. I then nested each table within a master table. Doing so allowed me to call td:hover from my stylesheet. Since each td held a table, it has the same effect of highlighting the a column when I mouse over it. |
|||
|
|
|
You can try experimenting with |
|||||
|
|
You can highlight the whole row with pure CSS using:
Achieving this effect for a column is impossible with this approach, as cell (td) is a child of a row (tr), not a column. To make it work in IE7+, make sure to add doctype declaration (what you should always do anyway:)). |
||||
|
|