Is it possible to have a 2 columns multi-column layout, that doesn’t stake the items from top to bottom, but from bottom to top (see code below and image attached)?
The amount of text inside the <p> tags differs throughout the publication. It’s a description text at the start of each chapter which should vertically align at the bottom of the type area in 2 columns.
I’m at the end of my wisdom and would be thankful for a hint ...
Thanks
Tobias
div {
columns: 2;
}
p {
break-inside: avoid-column;
}
<div>
<p>First para ihicium fugia santur, ut re nes rerro con coreped maximil is es accati am sedisciet estis dessed modigenda volore sequam, odigeni cus, ius est eos molorerum es eossimaxime nitin.</p>
<p>Second para porum inctem estiscipsum dolupta tusapelit, officia aut mos a sitatur, omnis dolorestenis simolupta necessunt.</p>
<p>Thrid para reptatur solupiet quis mo magnis doluptatur.</p>
</div>
The amount of text inside the <p> tags differs throughout the publication. It’s a description text at the start of each chapter which should vertically align at the bottom of the type area in 2 columns.
I’m at the end of my wisdom and would be thankful for a hint ...
Thanks
Tobias