Arrow before and after a box with CSS
I'm trying to create in a single box, two arrows, one as a pointer and the other one into the box just behind. Can not find the way to get the arrow right behind. Someone can help me?? here i post the link with the sample: http://jsfiddle.net/7Esu2/ CSS: .arrow { width:210px; height:40px; background-color:#CBCBCB; border: 1px solid #CBCBCB; position:relative; text-align:center; font-size:20px; font-weight:bold; line-height:40px; } .arrow:after { content:''; position:absolute; top:-1px; left:210px; width:0; height:0; border:21px solid transparent; border-left:15px solid #CBCBCB; } .arrow:before