1.三角箭头

  1. div{
  2. width: 0;
  3. height: 0;
  4. border: 10px solid #fff;
  5. border-right-color: #000;
  6. }

2.用css写三角

body{
  background-color:#fff;
}
div{
  width: 0;
  height: 0;
  border:10px solid transparent;
  border-bottom-color:#000 ;
  position: relative;
}
div::after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-bottom-color: #fff;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: -5px;
}