-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
33 lines (30 loc) · 892 Bytes
/
demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<title>Horizontal scrollable list</title>
<style type="text/css">
ul {
list-style: none;
padding: 0;
margin: 0;
}
#content-container {
width: 400px;
}
.horizontal-scrollable-list {
overflow-x: auto;
white-space: nowrap;
}
.horizontal-scrollable-list > li {
display: inline-block;
}
</style>
</head>
<body>
<div id="content-container">
<ul class="horizontal-scrollable-list">
<li>Item 1</li><li>Item 2</li><li>Item 3</li><li>Item 4</li><li>Item 5</li><li>Item 6</li><li>Item 7</li><li>Item 8</li><li>Item 9</li><li>Item 10</li>
</ul>
</div>
</body>
</html>