Answers for "horizontal scrollable div bootstrap"

CSS
2

make a container scrollable bootstrap

.anyClass {
  height:150px;
  overflow-y: scroll;
}
Posted by: Guest on December-03-2020
0

Horizontal Scrolling Bopostrap CSS

.scrolling-wrapper-flexbox {  display: flex;  flex-wrap: nowrap;  overflow-x: auto;  .card {    flex: 0 0 auto;  }}
Posted by: Guest on April-15-2021

Code answers related to "horizontal scrollable div bootstrap"

Browse Popular Code Answers by Language