There're plenty of different CSS shapes over at http://css-tricks.com/examples/ShapesOfCSS/ and I'm particularly puzzled with a triangle:

Triangle

#triangle-up {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid red;
}

So, how and why does it work?

link|improve this question
28  
You can: jsfiddle.net/wbZet – mskfisher Aug 16 '11 at 12:40
33  
Holy reputation batman! If I'd known something as simple as CSS triangles would get a bajillion upvotes, I'd have asked the question months ago. – zzzzBov Aug 16 '11 at 13:26
16  
How about the square that's not there? jsfiddle.net/minitech/sZgaa – minitech Aug 16 '11 at 16:31
4  
I can't triforce either :-( ▲ ▲ ▲ – ESultanik Aug 16 '11 at 19:08
6  
A buddy of mine has a page with an explanation and an application using it to build 3d objects: uselesspickles.com/triangles – Juan Mendes Aug 17 '11 at 0:37
show 7 more comments
feedback

6 Answers

up vote 746 down vote accepted

CSS Triangles: A Tragedy in Five Acts

As alex said, borders of equal width butt up against each other at 45 degree angles:

borders meet at 45 degree angles, content in middle

When you have no top border, it looks like this:

no top border

Then you give it a width of 0...

no width

...and a height of 0...

no height either

...and finally, you make the two side borders transparent:

transparent side borders

That results in a triangle.

The End

link|improve this answer
213  
Quality answers, such as "CSS Triangles: A Tragedy in Five Acts," is made possible by the generous upvotes of readers like you. – sdleihssirhc Aug 16 '11 at 4:18
15  
+1 If only I'd had drawn a picture... :D – alex Aug 16 '11 at 6:20
11  
@alex If you have scissors strong enough to cut through your monitor, you can make a flip book! – sdleihssirhc Aug 16 '11 at 6:22
11  
Love the title! – Stanislav Shabalin Aug 16 '11 at 6:43
8  
One of the better answers on SO! – Peter Aug 16 '11 at 11:50
show 16 more comments
feedback

The borders use an angled edge where they intersect (45° angle with equal width borders, but changing the border widths can skew the angle).

Border example

jsFiddle.

By hiding certain borders, you can get the triangle effect (as you can see above by making the different portions different colours). transparent is often used as an edge colour to achieve the triangle shape.

link|improve this answer
2  
Oh and you're on your way to a gold [html] badge too (just one upvote to go)... three gold badges in a single day – BoltClock Aug 17 '11 at 1:12
feedback

Start with a basic square and borders. Each border will be given a different color so we can tell them apart :

   .triangle {
       border-color: yellow blue red green;
       border-style: solid;
       border-width: 200px 200px 200px 200px;
       height: 0px;
       width: 0px;
    }

which gives you this :

enter image description here

But there's no need for the top border so set it width to 0px. then a border-bottom of 200px for our triangle to be 200px tall.

.triangle {
     border-color: yellow blue red green;
     border-style: solid;
     border-width: 0px 200px 200px 200px;
     height: 0px;
     width: 0px;
 }

and we will get this :

enter image description here

Then to hide the two side triangles set the border-color to transparent. Since the top-border has been effectively deleted, we can set the border-top-color to transparent as well.

.triangle {
    border-color: transparent transparent red transparent;
    border-style: solid;
    border-width: 0px 200px 200px 200px;
    height: 0px;
    width: 0px;
}

finally we get :

enter image description here

link|improve this answer
11  
Cool, but isn't this the same way? :-) – Stanislav Shabalin Aug 17 '11 at 11:33
There's another way to draw .., which turns out to be the same way :) Nice explanation though – The crocodile hunter Aug 17 '11 at 19:21
4  
-1 for using JPEGs with massive artifacts. But +1 for creating a great example of when not to use JPEGs that I can link to in the future for deterrance. ;) – hheimbuerger Aug 18 '11 at 8:24
why isn't a gif used instead here? – prusswan Dec 7 '11 at 8:37
feedback

Here is an animation in jsfiddle I created for demonstration
http://jsfiddle.net/HerrSerker/NUAXk/

link|improve this answer
feedback

A 10 years ago article which introduced CSS regular polygons : http://tantek.com/CSS/Examples/polygons.html — by Tantek Celik

link|improve this answer
5  
How about a cone: jsfiddle.net/pWUdG – mcb Aug 18 '11 at 18:59
feedback

Taking it one step further, using css based on this I added arrows to my back and next buttons (yes I know its not 100% cross-browser, but slick none the less).

Here is the jsFiddle.

link|improve this answer
how is this not cross browser? triangles should work back to IE6. – dustynachos Dec 30 '11 at 19:58
2  
the use of :before and :after are not 100% supported. – PseudoNinja Dec 30 '11 at 20:47
Psuedo-elements are not supported < IE8. – alex Feb 14 at 22:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.