I have a layout similar to:
I would like for the div to only exp
div
You can do it simply by using display: inline; (or white-space: nowrap;).
display: inline;
white-space: nowrap;
I hope you find this useful.