The problem is vertical-align: top not worked
CSS
ul {
width: 160px;
display: block;
white-space: nowrap;
overflow: auto;
vertical-align: top;
}
li {
width: 80px;
display: inline-block;
}
HTML
<div>
<ul>
<li>one</li><li>two</li><li>three</li><li>four<br />Test</li>
</ul>
</div>
I need make one, two, three at top like four. Please help
Example here http://jsfiddle.net/Y7PhV/
Thank you
Vertical align your LIs instead of the UL
http://jsfiddle.net/Y7PhV/88/