Possible Duplicate:
How does this CSS triangle shape work?
Please help me i need your suggestions.
Possible Duplicate:
How does this CSS triangle shape work?
Please help me i need your suggestions.
For example:
.arrow-right {
width: 0;
height: 0;
border-top: 60px solid transparent;
border-bottom: 60px solid transparent;
border-left: 60px solid green;
}
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