News item title
1 Nov 2017
This is the content of my news item. Very newsworthy.
Another title
6 Nov 2017
This is the content of my news item. Very newsworthy.
.card { display: flex; flex-direction: column; } .date { order: -1; text-align: right; }
<div class="wrapper"> <div class="card"> <h3>News item title</h3> <div class="date">1 Nov 2017</div> <p>This is the content of my news item. Very newsworthy.</p> </div> <div class="card"> <h3>Another title</h3> <div class="date">6 Nov 2017</div> <p>This is the content of my news item. Very newsworthy.</p> </div> </div>