DEV Community

Discussion on: Simple F&Q only using HTML & CSS

Collapse
 
__manucodes profile image
manu • Edited

Great!
My only ideas/improvements is IE11/IE6 Support. The <details> tag isn't supported in IE.

Otherwise, in my opinion, I would like a animation effect

details
{
    transition: height 1s ease;
    overflow: hidden;
}

details:not([open])
{
    max-height: 0;
}

details[open]
{
    max-height: 999px;
}
Enter fullscreen mode Exit fullscreen mode
Collapse
 
nikhil27b profile image
Nikhil Bobade

Thanks

Some comments have been hidden by the post's author - find out more