I am trying to change the border-color of a CSS shape but have been unsuccessful. Every time I play around the elements below, it changes the whole color of the shape.
.pointer {
width: 0;
height: 0;
border-top: 5px solid transparent;
border-left: 10px solid red;
border-bottom: 5px solid transparent;
position:relative;
}
I want to be able to change the left, right, top, bottom border-color. Can someone help out?