Hi I have a following css :
div.container { height:20px; overflow: hidden; margin: 15px 0px; padding:5px 10px 5px 10px; white-space: nowrap; } div.conten
Remove float:left from <span> and <a>. This makes no sense. Those are already inline elements.
float:left
<span>
<a>
inline
Remove the floats and add div.content { white-space: nowrap; } and see if that solves your problem.
div.content { white-space: nowrap; }