Looking to change the orientation of my horizontally wrapped list items from vertical to horizontal. Take a look at my code snippet:
HTML
<ul>
<li>Long text goes here.</li>
<li>Another Longer Text Goes Here</li>
<li>Shorter text</li>
</ul>
CSS
ul {width:150px;}
li {width:30%; display:inline-block;whitespace:pre-line;}
Appreciate any advice or solutions, thank you.