Hopefully this is an easy question. I have a div that I want to toggle hidden/shown with a button
div
Try with opacity
div { transition: all 0.4s ease } .hide { opacity: 0; }
Hello