css tilde

by Alejandro M

HTML

<span><i></i></span>

CSS

span {}

i {
  content: "";
  position: absolute;
  left: -6px;
  top: -2px;
  width: 0;
  height: 0;
  border-top: 10px solid white;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  z-index: 2;
}

span:after {
  content: "";
  position: absolute;
  left: 0;
  top:0;
  width: 0;
  height: 0;
  border-top: 10px solid white;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 0;
  height: 0;
  border-top: 10px solid red;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}