×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
1
Language: CSS
Posted by: Philip Rehberger
Added: Sep 14, 2016 12:07 AM
Views: 2079
Tags: no tags
  1. ul {
  2.     margin: 0.75em 0;
  3.     padding: 0 1em;
  4.     list-style: none;
  5. }
  6. li:before {
  7.     content: "";
  8.     border-color: transparent #111;
  9.     border-style: solid;
  10.     border-width: 0.35em 0 0.35em 0.45em;
  11.     display: block;
  12.     height: 0;
  13.     width: 0;
  14.     left: -1em;
  15.     top: 0.9em;
  16.     position: relative;
  17. }