Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 589 Bytes

trianglecss.md

File metadata and controls

16 lines (13 loc) · 589 Bytes

How to write triangles with CSS Back

/** top to bottom 6x6 */
.triangle {
    border: 3px solid transparent;
    border-top: 6px solid #000;
    height: 0;
    width: 0;
}

Demo

See the Pen PNbgXd by aleen42 (@aleen42) on CodePen.

<script async src="//assets.codepen.io/assets/embed/ei.js"></script>