I have a set of 4 accordian tabs that's height increases when hovered on. I am trying to add a CSS animation so there is a smooth transition between it's inactive height to its height when hovered on. I would like it to be a smooth transition as well.
So far, I have tried using an animation for the height inside the object class:
button.accordions:hover {
transition: height 0.5s ease;
height: 75px;
}
This results in the buttons not changing height at all when hovered on.
Here is a link to my JSFiddle