Horizontal list using float

Description

Using float left is a popular way to make a list horizontal. It tends to have less problems then the alternative, which is using display: inline.

Snippet

li{
float: left;
margin-right: 20px;
list-style: none;
}

Post new comment

The content of this field is kept private and will not be shown publicly.