-8

Possible Duplicate:
How does this CSS triangle shape work?

Please help me i need your suggestions.

Community
  • 1
  • 1
Mohit Singh
  • 142
  • 9

2 Answers2

1

For example:

.arrow-right {
    width: 0; 
    height: 0; 
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;

    border-left: 60px solid green;
}

http://css-tricks.com/snippets/css/css-triangle/

bryce
  • 468
  • 5
  • 23
0

Look HERE for instructions on how to use CSS to draw a triangle. Here is an example:

.arrow-right {
    width: 0; 
    height: 0; 
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;

    border-left: 60px solid green;
}

CSS tricks can be found here

astronautlevel
  • 478
  • 4
  • 14