How can I prevent the content within horizontal div that overflows from showing?
I have this css:
#fixed_menu_div {
width:200px;
height:80%;
float:left;
left:0;
overflow-x:none;
overflow-y:scroll;
position:fixed;
}
The div is displayed on the left of the page(s).
It is meant to hide the horizontal scrollbar:
overflow-x:none;
but its still showing. I want to keep the
overflow-y:scroll;
and hide the horizontal scrollbar.
overflow-x: hidden;