JSFiddle - React, Tailwind, and code Playground
by rohitazad
HTML
<div id="news">
<div class="date" style="float: right;">06-05-2013</div>
<div class="text">[...]</div>
<div id="comment-block" style="float: right;">Comment on this news</div>
</div>
CSS
#news{background:red; padding:5px;}
.date{background:green;}
.text{background:yellow;}
#comment-block{background:blue;}
#news:after, .date:after, .text:after, #comment:after{
content:"";
clear:both;
overflow:hidden;
display:table;
}