Triangle

by WhesleyBarnard

HTML

<div class="box">
    <div class="triangle"></div>
    some content text...
</div>

CSS

.box {
    width:400px;
    height:80px;
    line-height: 80px;
    background-color:gray;
    text-align: center;
    position: relative;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 40px solid gray;
    position: absolute;
    top: 80px;
    left: 50%;
    margin-left: -40px;
}