draw arrow in css
Snippet Code
instead of using imges, you can draw arrow in css using the following,
.arrow{
position: absolute;
border: 5px solid transparent;
border-top-color: #ffffff;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
/* IE */
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);(change the rotation based on the direction[1=left, 2=up,3=right,4=down])
Tags