I am splitting 4 column dynamically with adjustable height. But I want first paragraph in 2 columns and remaining paragraph separated by 4 columns. This is what I've tried:
.column-4 {
-webkit-columns: 4;
-moz-columns: 4;
columns: 4;
-webkit-column-gap: 15px;
-moz-column-gap: 15px;
column-gap: 15px;
}
.column-2 {
column-span: 2;
-webkit-column-span: 2;
-moz-column-span: 2;
}
.text-justify {
text-align: justify;
}
p:first-child {
margin-top: 0;
}
<div class="text-justify column-4">
<p class="column-2">Prime Minister Narendra Modi spoke to Andhra Pradesh Chief Minister N Chandrababu Naidu, a day after the TDP chief decided to pull out of the NDA government at the Centre</p>
<p>According to official sources, the two Union ministers from the TDP quota will meet the prime minister at 6 pm today</p>
<p>In a late night development yesterday, the TDP had announced its decision to pull out its ministers from the NDA government.</p>
<p>The two TDP ministers in the Modi government are civil aviation minister Ashok Gajapathi Raju and minister of state for science and technology Y S Chowdary.</p>
<p>In a late night development yesterday, the TDP had announced its decision to pull out its ministers from the NDA government.</p>
<p>The two TDP ministers in the Modi government are civil aviation minister Ashok Gajapathi Raju and minister of state for science and technology Y S Chowdary</p>
<p>In a late night development yesterday, the TDP had announced its decision to pull out its ministers from the NDA government</p>
<p>The two TDP ministers in the Modi government are civil aviation minister Ashok Gajapathi Raju and minister of state for science and technology Y S Chowdary.</p>
<p>In a late night development yesterday, the TDP had announced its decision to pull out its ministers from the NDA government</p>
<p>The two TDP ministers in the Modi government are civil aviation minister Ashok Gajapathi Raju and minister of state for science and technology Y S Chowdary.</p>
<p>In a late night development yesterday, the TDP had announced its decision to pull out its ministers from the NDA government.</p>
</div>
Please find below image, which is exactly what I want:
In the picture, the 2nd, 3rd, 4th and 5th block together form a continuous single paragraph. That is I am using 2 paragraph only. 1st paragraph occupies 2 columns and 2nd paragraph occupies remaining blocks (i.e. 2, 3, 4, 5) with equal height.