http://jsfiddle.net/oapu11q4/20/
===================== Styling with CSS ===================
#container {
display: table;
height: auto;
margin: 10px;
}
div#first {
background: none repeat scroll 0 0 #ff3322;
display: table-cell;
font-size: 0.95rem;
height: 100%;
width: 120px;
}
#container #line {
background: none repeat scroll 0 0 #336;
display: table-cell;
}
#line .inner {
width: 10px;
}
div#second {
background: none repeat scroll 0 0 #393;
display: table-cell;
font-size: 1rem;
height: 100%;
width: 120px;
}
div#first .inner, div#second .inner {
padding: 10px;
}
===================== Structured in HTML =============================
<div id="container">
<div id="first">
<div class="inner">The first section of the text may not be the strongest, but the writer tries to describe key points of his visit
</div>
</div>
<div id="line">
<div class="inner"></div>
</div>
<div id="second">
<div class="inner">The second part mainly talked about the major issues at the start when all participants didn't have enough time to prepare and chaos ensued. But everyone wanted to win, so they never gave up <br> NEVER :-)
</div>
</div>
</div>