I want to make a rectangle with arrows on both sides. I have the jsfiddle http://jsfiddle.net/7wegxh4v/ . Here is my css
<body>
<div id="arrowbox"></div>
</body>
#arrowbox
{
width: 200px;
height: 50px;
background-color:green;
margin-left:100px;
margin-top:100px;
}
It now shows a green rectangle. I want to add two equilateral triangle triangles of green color at both ends. How can I do that using css? Any idea?