JSFiddle - React, Tailwind, and code Playground

by taylorRichie

HTML

<div id="container">
    <header>
        <p> header content </p>
    </header>
    <div id="image">I want this to carry the border outside of the container</div>
    <div id="main"></div>
</div>

CSS

div#container{
    width:960px;
    margin:0px auto;
}
div#image{
    border-top:5px solid red;
    border-bottom:5px solid red;
    width:100%;
    height:50px;
}
div#main{
}