I want to hide the horizontal scrollbar inside a div that's too wide, because it looks kinda ugly. I do still want to be able to scroll. Example:

My HTML:
<div class="nav">
<span class="nav"><a class="nav-current" href="index.html">About me</a></span>
<span class="nav"><a class="nav" href="biography.html">Biography</a></span>
<span class="nav"><a class="nav" href="biography.html">Biography</a></span> <!-- Copied those to test the behaviour -->
<span class="nav"><a class="nav" href="biography.html">Biography</a></span>
<span class="nav"><a class="nav" href="biography.html">Biography</a></span>
</div>
The corresponding CSS:
div.nav {
overflow-y: hidden;
white-space: nowrap;
}
Could someone help me with this? Thanks in advance!