三角形列表项目符号

Avatar of Chris Coyier
Chris Coyier
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;
}

这是一种相当古老的方法。如今,您可能想知道使用::marker是多么容易。以下是两种方法