I'm looking for a solution for combining different x and y overflow.
Following code:
div {
overflow-x: visible;
overflow-y: hidden;
}
doesn't work. I want a simple method to hide horizontal scrollbar, keeping the vertical overflown content visible. I do not want to change the DIV's height in layout. Any tricks?