Create Triangles in Pure CSS

You can create triangle in your HTML web pages in pure CSS without requiring any JavaScript or images.

CSS Triangles

This one creates an isosceles triangle pointing downwards. Should come handy for creating speech bubbles.

<div class="triangle"></div>

<style>
  .triangle {
    border-top: 100px solid black;
    border-left: 100px dashed transparent;
    border-right: 100px dashed transparent;
    border-bottom: 0;
    display: block;
    overflow: hidden;
    width: 0;
    height: 0;
  }
</style>

And here’s another CSS snippet that generates a right angle triangle.

<div class="triangle"></div>

<style>
  .triangle {
    border-top: none;
    border-left: none;
    border-right: 100px dashed transparent;
    border-bottom: 100px solid black;
    display: block;
    overflow: hidden;
    width: 0;
    height: 0;
  }
</style>

You can combine 4 different-colored triangles and create a square box.

<div class="square"></div>

<style>
  .square {
    border-top: 100px solid #0099ff;
    border-left: 100px solid #ff9900;
    border-right: 100px solid #f6402d;
    border-bottom: 100px solid #8cc63e;
    display: block;
    overflow: hidden;
  }
</style>

Amit Agarwal is a web geek, solo entrepreneur and loves making things on the Internet. Google recently awarded him the Google Developer Expert and Google Cloud Champion title for his work on Google Workspace and Google Apps Script.

Awards & Recognition

Google Developer Expert

Google Developer Expert

Google awarded us the Developer Expert title recogizing our work in Workspace

ProductHunt Golden Kitty

ProductHunt Golden Kitty

Our Gmail tool won the Lifehack of the Year award at ProductHunt Golden Kitty Awards

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional title for 5 years in a row

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator award for technical expertise

Want to stay up to date?
Sign up for our email newsletter.

We will never send any spam emails. Promise 🫶🏻