JSFiddle - React, Tailwind, and code Playground

by rchern

HTML

<div id="pageHeaderContainer">
    <div id="pageHeader">
        <div id="pageTitle">
            MESSAGE BOARDS
        </div>
        <div id="pageDescription">
            <div>
                <p>The Message Boards are your place to connect with people who totally get it. Ask questions, share tips, offer feedback, and more! </p>
                <p><a href="#">READ COMPLETE RULES &gt;</a></p>
            </div>
        </div>
    </div>
</div>

CSS

#pageHeaderContainer {
    border-bottom: 2px solid #ccc;
    padding: 15px 0;
    margin: 0 0 50px 0;
    height: 76px;
}
#pageHeader {
    margin: 0 0 0 0;
    font-size: 0;
    line-height: 0;
    display: table-row;
}
#pageTitle {
    color: #333;
    font-size: 25px;
    line-height: 25px;
    display: table-cell;
    vertical-align: middle;
    padding: 0 20px 0 0;
    max-width: 575px;
}

#pageDescription {
    font-family: Verdana;
    letter-spacing: 0;
    color: #666;
    font-size: 12px;
    line-height: 18px;
    border-left: 2px solid #ccc;
    padding: 0 20px;
    display: table-cell;
    height: 76px;
    line-height: normal;
    vertical-align: middle;
    overflow: hidden;
}