CSS Arrow
Down arrow using CSS
by Kriti
HTML
<hr class="down"></hr>
CSS
.down {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #7F7F7F;
}
by Kriti
<hr class="down"></hr>
.down {
width: 0;
height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #7F7F7F;
}