Home › Forums › CSS › Help me with this css problem › Reply To: Help me with this css problem
February 16, 2016 at 11:15 pm
#238114
Participant
I’m assuming you’ll be using jQuery…
.hovered {
bottom: 0;
left: 50;
}
$('img').mouseenter(function() {
$(this).addClass('hovered');
});