overflow property in css to scroll image code example
Example 1: css scrollbar vertical only
style="overflow:scroll; overflow-x: hidden;" // x is horizontal, y is vertical
Example 2: css no overflow
div.ex1 {
overflow: scroll;
}
div.ex2 {
overflow: hidden;
}
div.ex3 {
overflow: auto;
}
div.ex4 {
overflow: visible;
}