CSS
Simple horizontal (inline) list CSS
A little reminder as to how to achieve a simple horizontal (inline ) list using CSS because I keep forgetting. The key is obviously the display: inline bit.
#mylist li { display: inline; list-style-type: none; padding-right: 20px; }
Item one
Item two
Item three
#mylist li {
display: inline;
list-style-type: none;
padding-right: 20px
}
