Skip to content

Instantly share code, notes, and snippets.

@cave2006
Created August 8, 2022 03:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cave2006/42dc118364af75e7bff30dda98122a0e to your computer and use it in GitHub Desktop.
Save cave2006/42dc118364af75e7bff30dda98122a0e to your computer and use it in GitHub Desktop.
создание горизонтального скролла блоков без js
.el-column {
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
scrollbar-width: none;
}
.el-column.elem::-webkit-scrollbar {
width: 0;
height: 0;
}
.el-column > div {
display: inline-block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment