Forum Moderators: not2easy
<!DOCTYPE html>
<html>
<head>
<title>test</title>
<style type="text/css">
.container {
width: 200px;
overflow-y: scroll;
height: auto;
}
ul {
list-style-type: none;
padding: 0;
margin: 0;
width: 2000px;
}
ul li {
width: 50px;
height: 50px;
float: left;
margin: 1px;
padding: 5px;
background: #555;
color: #fff;
}
</style>
</head>
<body class="">
<div class="container">
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
<li>10</li>
</ul>
</div>
</body>
</html>
scroll horizontally within the containing div
<snip>
overflow-y: scroll;
<!DOCTYPE html>
<html>
<head>
<title>test</title>
<style type="text/css">
ul {
width: 300px;
height: auto;
overflow: auto;
overflow-y: hidden;
white-space: nowrap;
list-style-type: none;
margin: 0;
padding: 0;
}
ul li {
width: 50px;
height: 50px;
margin: 1px;
padding: 5px;
display: inline-block;
background: red;
}
</style>
</head>
<body class="">
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
<li>10</li>
</ul>
</body>
</html>