how to add horizontal scroll css code example
Example 1: horizontal scroll html
Card
Card
Card
Card
Card
Card
Card
Card
Card
.scrolling-wrapper {
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
.card {
display: inline-block;
}
}
Example 2: css horizontal scroll
.scroll{
overflow-x: scroll;
overflow-y: hidden;
height: 80px;
white-space:nowrap
}