Created
July 15, 2023 07:27
-
-
Save fatadz/f492741200a374af458238deca5788b6 to your computer and use it in GitHub Desktop.
Horizontally scrollable content
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
<style> | |
.wrapper{ | |
max-height: 120px; | |
border: 1px solid #ddd; | |
display: flex; | |
overflow-x: auto; | |
} | |
.wrapper::-webkit-scrollbar{ | |
width: 0; | |
} | |
.wrapper .item{ | |
min-width: 110px; | |
height: 110px; | |
text-align: center; | |
background-color: #ddd; | |
margin-right: 2px; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="wrapper"> | |
<div class="item">box-1</div> | |
<div class="item">box-2</div> | |
<div class="item">box-3</div> | |
<div class="item">box-4</div> | |
<div class="item">box-5</div> | |
<div class="item">box-6</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment