Skip to content

Instantly share code, notes, and snippets.

@mynameispj
Created September 3, 2012 23:57
Show Gist options
  • Save mynameispj/3615014 to your computer and use it in GitHub Desktop.
Save mynameispj/3615014 to your computer and use it in GitHub Desktop.
<ol> or <ul> with centered <li>s
ul {
display: block;
width: 100%;
text-align: center;
}
li {
position: relative;
display: inline;
}
<ul>
<li>List</li>
<li>List</li>
<li>List</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment