#statement .polygon .outer { display: inline-block; width: 290px; height: 75px; background: #590f20; position: relative; color: #F94141; text-align: center; font-size: 1.8em; line-height: 2.9em; font-weight: 400; text-transform: uppercase; -webkit-clip-path: polygon(30px 80px, 0px 50%, 30px 0px, 260px 0px, 290px 50%, 260px 80px); clip-path: polygon(30px 80px, 0px 50%, 30px 0px, 260px 0px, 290px 50%, 260px 80px); -webkit-transform: scale(0.98, 0.95); transform: scale(0.98, 0.95); } #statement .polygon.border { -webkit-clip-path: polygon(30px 80px, 0px 50%, 30px 0px, 260px 0px, 290px 50%, 260px 80px); clip-path: polygon(30px 80px, 0px 50%, 30px 0px, 260px 0px, 290px 50%, 260px 80px); background-color: orange; }
<div id="statement"> <div class="container"> <div class="row"> <div class="col-md-8 col-md-offset-2"> <div class="heading"> <h1></h1> </div> </div> </div> <div class="row"> <div class="col-md-3 col-md-offset-4-5"> <a class="button" href="#button"> <div class="polygon border"> <span class="outer"> Work With Us </span> </div> </a> </div> </div> </div> </div>