JSFiddle - React, Tailwind, and code Playground

css arrow please! http://cssarrowplease.com/

by Jennifer Perrin

HTML

<div class="preview">
<div class="arrow_box"><h1 class="logo">css arrow please!</h1></div>
    </div>

CSS

body { padding:50px; }
.preview { width:400px; }
h1 { padding:6px; }
.logo {
    color: #DDF8C6;
    font-size: 54px;
    font-weight: bold;
    line-height: 54px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}
.arrow_box { position: relative; background: #88b7d5; border: 2px solid #c2e1f5;
    border-radius: 6px 6px 6px 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);

}

.arrow_box:after, .arrow_box:before { bottom: 100%; border: solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; }
.arrow_box:after { border-bottom-color: #88b7d5; border-width: 40px; left: 50%; margin-left: -40px; } .arrow_box:before { border-bottom-color: #c2e1f5; border-width: 43px; left: 50%; margin-left: -43px; }