How to Show scrollbar while mouse hover the container without affecting alignment
I want to display scrollbar while the mouse hover the container, if the contents inside the container overflows the container. The below code works good in chrome but doesn’t work in firefox, because it doesn’t suppport overlay property. <style type="text/css"> .container { overflow:hidden; } .container:hover { overflow:overlay; } </style> <div class="container"> contents </div> I tried… Read More How to Show scrollbar while mouse hover the container without affecting alignment