次のように、左の列を右に揃え、右の列を左に揃えて、中心軸に沿って並べたいと思います。
16 January 2013 | Here is a line of text.
26 December 2013 | Another line of text here.
4 May 2011 | Here is something else.
HTML は、<span>
次のように s にあります。
<div class="line">
<span class="date">16 January 2013</span> <span class="text">Here is a line of text.</span>
</div>
私はこれを.line { display: table-row; }
andでやろうとしまし.line span { display: table-cell; }
たが、うまくいかないようです。