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
}
Did you enjoy this post? Why not leave a comment below and continue the conversation, or subscribe to my feed and get articles like this delivered automatically to your feed reader.

Comments
No comments yet.
Leave a comment