Use max-height for Pure CSS Sliders

Implement CSS-only sliders using max-height with overflow hidden:

  1. .slider {
  2. max-height: 200px;
  3. overflow-y: hidden;
  4. width: 300px;
  5. }
  6. .slider:hover {
  7. max-height: 600px;
  8. overflow-y: scroll;
  9. }

The element expands to the max-height value on hover and the slider displays as a result of the overflow.