Skip to content

Instantly share code, notes, and snippets.

@don1138
Created June 11, 2013 21:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save don1138/5761041 to your computer and use it in GitHub Desktop.
Save don1138/5761041 to your computer and use it in GitHub Desktop.
CSS Triangular List Bullets
/* Triangular List Bullets */
ul {
margin: 0.75em 0;
padding: 0 1em;
list-style: none;
}
li:before {
content: "";
border-color: transparent #111;
border-style: solid;
border-width: 0.35em 0 0.35em 0.45em;
display: block;
height: 0;
width: 0;
left: -1em;
top: 0.9em;
position: relative;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment