horizontal scrollview html

Solutions on MaxInterview for horizontal scrollview html by the best coders in the world

showing results for - "horizontal scrollview html"
Blessing
25 Jan 2019
1.scrolls {
2    overflow-x: scroll;
3    overflow-y: hidden;
4    height: 80px;
5    white-space:nowrap
6}
7.imageDiv img {
8    box-shadow: 1px 1px 10px #999;
9    margin: 2px;
10    max-height: 50px;
11    cursor: pointer;
12    display:inline-block;
13    *display:inline;/* For IE7*/
14    *zoom:1;/* For IE7*/
15    vertical-align:top;
16 }