CSS Arrow Up

HTML

<div class="arrow-up"></div>

CSS

.arrow-up {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid black;
    
    -webkit-transform: scaleX(0.7);
    -moz-transform: scaleX(0.7);
}