I am trying to draw a triangle in css which contain only borders. no background colors.
.arrow {
border-bottom: 10px solid transparent;
border-top: 10px solid transparent;
border-right: 20px solid #000;
height: 0;
width: 0px;
}
The above code gives me a triangle with #000 as background colors. i just want the triangle borders.