I currently have a table structured like this:
<div class="footer_row_3">
<table class="tableA">
<tr>
<td><img class="popcorn" src="http://i.imgur.com/HUjq2Va.png"></td>
<td><span class="statement">Lorem Ipsum</span></td>
<td><img class="popcorn" src="http://i.imgur.com/HUjq2Va.png"></td>
</tr>
</table>
</div>
My goal is to implement two changes when the mouse hovers over any part of tableA
:
- The popcorn images should be replaced with this image:
http://i.imgur.com/K29T3Fw.png
- The text color should change to red.
This effect should include a CSS 'fade' style
transition
, allowing for a smooth transition between styles.Both changes mentioned above should occur when hovering over
tableA
from any area within the table.
While I am familiar with changing individual elements on hover, I am unsure how to apply these changes simultaneously across multiple items. Any guidance on achieving this effect would be appreciated.
How can I accomplish this desired effect?