Skip to content

Instantly share code, notes, and snippets.

@dsdsdsdsdsds
Last active August 14, 2017 21:10
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 dsdsdsdsdsds/edecc3c8360198343e96 to your computer and use it in GitHub Desktop.
Save dsdsdsdsdsds/edecc3c8360198343e96 to your computer and use it in GitHub Desktop.
CSS: Custom bullet point for <ul> list
ul {
position: relative;
margin-left: 0;
padding-left: 1em;
list-style-type: none;
li {
&:before {
content: "?";
position: absolute;
left: 0;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment