I'm trying to create a list of thumbnails that I can scroll horizontally, but it breaks no matter what I do.
This is what I have now
ul{
width: 100%;
list-style-type: none;
margin: auto;
overflow-x: scroll;
}
li{
height: 100px;
width: 100px;
border: 1px solid red;
display: inline-block;
}
Any ideas on what I'm doing wrong? Thanks!