how to create an arrow without using image in HTML? I have a jquery plugin or Testimonials where they have created an arrow without using image by using following style :
#testimonials .item div.text:after {
content: " ";
border: 10px solid transparent;
border-right-color: #fff;
display: block;
width: 0;
height: 0;
margin-top: -10px;
position: absolute;
left: -20px;
top: 50%;
}
I cant figure out this styles.