HTML CSS examples for CSS Widget:Hover to Show
Hover to show UL list
<html lang="en"> <head> <title>Lorem i</title> <style> .show:hover .list-categories {<!-- w w w. jav a 2s . c om--> overflow:auto; max-height:inherit; } .list-categories { list-style-type:none; padding:0px; margin:0px; max-height:0px; overflow:hidden; } </style> </head> <body translate="no"> <div class="show"> Lorem ipsu <ul class="list-categories"> <li>Lor</li> <li>Lor</li> <li>Lor</li> <li>Lor</li> <li>Lor</li> <li>Lor</li> </ul> </div> </body> </html>