Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save akirchmyer/7508794 to your computer and use it in GitHub Desktop.

Select an option

Save akirchmyer/7508794 to your computer and use it in GitHub Desktop.
A Pen by Andrew Kirchmyer.
<ul class="mylist">
<li><a href="#">Item 1</a></li>
<li><a href="#">Item 2</a></li>
<li><a href="#">Item 3</a></li>
<li><a href="#">Item 4</a></li>
<li><a href="#">Item 5</a></li>
<li><a href="#">Item 6</a></li>
<li><a href="#">Item 7</a></li>
<li><a href="#">Item 8</a></li>
</ul>
.mylist {
display: block;
white-space: nowrap;
width: 200px;
overflow: hidden;
}
.mylist li {
display: inline;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment