How to create triangle in CSS?

Triangles are a basic shape in geometry and useful in creating a variety of designs in web development. In CSS, triangles can be created using a few simple techniques. In this article, we will learn two effective methods to create triangles in CSS.

  • Using Borders to Create Triangles

  • Using Clip Path to Create Triangles

Using Borders to Create Triangles

The most common way to create a triangle in CSS is by using the border property. By creating an element with zero width and height, and applying borders with transparent sides, we can form triangle shapes. The trick is that only one border is colored while the adjacent borders are transparent.

Example 1: Upward Pointing Triangle

The following example creates an equilateral triangle pointing upward using the border property

<!DOCTYPE html>
<html>
<head>
<style>
    body {
        text-align: center;
        font-family: Arial, sans-serif;
    }
    .triangle {
        margin: 20px auto;
        width: 0;
        height: 0;
        border-bottom: 100px solid #ff6b35;
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
    }
</style>
</head>
<body>
    <h3>Upward Triangle Using Border Property</h3>
    <div class="triangle"></div>
</body>
</html>
An orange triangle pointing upward appears centered on the page, with a 100px base and 50px height on each side.

Example 2: Downward Pointing Triangle

To create a downward pointing triangle, we reverse the border properties

<!DOCTYPE html>
<html>
<head>
<style>
    body {
        text-align: center;
        font-family: Arial, sans-serif;
    }
    .triangle-down {
        margin: 20px auto;
        width: 0;
        height: 0;
        border-top: 100px solid #4a90e2;
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
    }
</style>
</head>
<body>
    <h3>Downward Triangle Using Border Property</h3>
    <div class="triangle-down"></div>
</body>
</html>
A blue triangle pointing downward appears centered on the page.

Using Clip Path to Create Triangles

The clip-path property provides more flexibility for creating complex triangle shapes. It allows us to define custom clipping paths using coordinates, making it perfect for creating triangles with precise control over their shape and orientation.

Example 3: Equilateral Triangle with Clip Path

Here is an example of creating an equilateral triangle using the clip-path property

<!DOCTYPE html>
<html>
<head>
<style>
    body {
        text-align: center;
        font-family: Arial, sans-serif;
    }
    .triangle-clip {
        margin: 20px auto;
        width: 150px;
        height: 130px;
        background: linear-gradient(45deg, #ff6b35, #f7931e);
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    }
</style>
</head>
<body>
    <h3>Triangle Using Clip Path Property</h3>
    <div class="triangle-clip"></div>
</body>
</html>
A gradient-colored triangle appears with smooth edges, pointing upward. The triangle has an orange-to-yellow gradient effect.

Example 4: Right-Angled Triangle

The clip-path method allows creating triangles with different angles

<!DOCTYPE html>
<html>
<head>
<style>
    body {
        text-align: center;
        font-family: Arial, sans-serif;
    }
    .triangle-right {
        margin: 20px auto;
        width: 120px;
        height: 120px;
        background-color: #9b59b6;
        clip-path: polygon(0% 0%, 0% 100%, 100% 100%);
    }
</style>
</head>
<body>
    <h3>Right-Angled Triangle</h3>
    <div class="triangle-right"></div>
</body>
</html>
A purple right-angled triangle appears with the right angle at the bottom-left corner.

Key Differences

Method Advantages Disadvantages
Border Method Wide browser support, simple to implement Limited to basic triangle shapes
Clip Path Method More flexibility, supports complex shapes, works with backgrounds Limited browser support in older browsers

Conclusion

Both border and clip-path methods are effective for creating triangles in CSS. The border method is ideal for simple triangles with excellent browser support, while clip-path offers more flexibility for complex shapes and gradient effects.

Updated on: 2026-03-15T16:23:23+05:30

3K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements