Is it feasible to implement text wrapping into two columns or more in HTML using solely CSS?
I have a series of continuous text enclosed within p
tags only, structured as follows:
<div id="needtowrap">
<p>Lorem ipsum dolor sit amet, ...</p>
<p>Nulla ullamcorper diam arcu, ...</p>
<p>In libero diam, facilisis quis urna nec, ...</p>
<p>Sed varius et mi quis dictum. ...</p>
</div>
I am looking to divide this content into two columns each representing 50% of the text width, similar to features available in Microsoft Word or LibreOffice.
Is this achievable through CSS manipulation alone?