用css制作箭头

画两条边框,再旋转盒子45度

 .box{
           width: 7px;
           height: 7px;
           border-top: 2px solid red;
           border-right: 2px solid red;
           transform: rotate(45deg);

       }