Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
32  
You can: jsfiddle.net/wbZet – mskfisher Aug 16 '11 at 12:40
54  
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
23  
How about the square that's not there? jsfiddle.net/minitech/sZgaa – rynah Aug 16 '11 at 16:31
8  
I can't triforce either :-( ▲ ▲ ▲ – ESultanik Aug 16 '11 at 19:08
7  
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 8 more comments

7 Answers

up vote 964 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

share|improve this answer
266  
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
19  
+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
10  
One of the better answers on SO! – Peter Aug 16 '11 at 11:50
show 17 more comments

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.

share|improve this answer
5  
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

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:

square with four borders

But there's no need for the top border, so set its width to 0px. Now our border-bottom of 200px will make our triangle 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:

bottom half of square with four borders

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 this:

triangular bottom border

share|improve this answer
12  
Cool, but isn't this the same way? :-) – Stanislav Shabalin Aug 17 '11 at 11:33
1  
There's another way to draw .., which turns out to be the same way :) Nice explanation though – Nick Aug 17 '11 at 19:21
8  
-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
2  
why isn't a gif used instead here? – prusswan Dec 7 '11 at 8:37
1  
Sorry @hheimbuerger, I messed up your example by fixing the images. You’ll have to link to revision 2 of this answer in the future. – Rory O'Kane Aug 15 '12 at 20:05
show 1 more comment

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

share|improve this answer

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

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

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's the HTML:

<div class="triangle"></div>
<div class="triangle triangle-down"></div>
<div class="triangle triangle-left"></div>
<div class="triangle triangle-right"></div>

<a class="triangle-before triangle-before-left" href="#">Back</a>
<a class="triangle-after triangle-after-right" href="#">Next</a>

And here's the CSS:

.triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid red;
    margin:20px auto;
}

.triangle-down {
    border-bottom:none;
    border-top: 100px solid red;
}

.triangle-left {
    border-left:none;
    border-right: 100px solid red;
    border-bottom: 50px solid transparent;
    border-top: 50px solid transparent;
}

.triangle-right {
    border-right:none;
    border-left: 100px solid red;
    border-bottom: 50px solid transparent;
    border-top: 50px solid transparent;
}

.triangle-after:after {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid red;
    margin:0 5px;
    content:"";
    display:inline-block;
}

.triangle-after-right:after {
    border-right:none;
    border-left: 5px solid blue;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;

}

.triangle-before:before {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid blue;
    margin:0 5px;
    content:"";
    display:inline-block;
}

.triangle-before-left:before {
    border-left:none;
    border-right: 5px solid blue;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;

}

Here is the jsFiddle.

share|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
1  
Psuedo-elements are not supported < IE8. – alex Feb 14 '12 at 22:49

Consider the below triangle

.triangle {
    border-bottom:15px solid #000;
    border-left:10px solid transparent;
    border-right:10px solid transparent;
    width:0;
    height:0;
}

This is what we are given:

Small triangle output

Why it came out in this shape? The below diagram explains the dimensions, note that 15px was used for the bottom border and 10px was used for left and right.

Large triangle

It's pretty easy to make a right-angle triangle also by removing the right border.

Right angle triangle

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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