draw arrow in css - Css

draw arrow in css

Snippet Code


  
Rate this page :
  [ 0 votes]

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


Ask Questions

Ask Question