I need this because I want to make a menu (which is made from a HTML list) appear horizontally.
I prefer not to use absolute positioning since it might become messy
quite simple:
ul.yourlist li { float:left; }
or
ul.yourlist li { display:inline; }