create arrow using css

by Ramya 2013-12-18 09:52:24

create arrow using css:

Instead of using image, you can create arrow using css, which saves the loading time and moreover, you can design your arrow according to your needs....

.arrow{
content: '';
position: relative;
top: 12px;
left: 0px;
border-color: blue transparent transparent transparent;
border-style: solid;
border-width: 5px;
width: 0;
height: 0;
margin: 5px;
}


You can also use this style as like bullets..
1622
like
0
dislike
0
mail
flag

You must LOGIN to add comments