I am working on a WP project. I have been trying to have a nice text flow between columns using bootstrap frame work.
I need the same story flowing among diverse columns what apparently seems to be called as "like newspapers". I have found some examples using just the multi column in css but I would prefer to just do it in bootstrap.
I assume that the each colum must have a height so there is a point where the story breaks to the other column .
Here is an example of my code :
<div class=' col-sm-12 col-xs-12'>
<?php get_template_part ('template-parts/content/content', 'image');?>
</div>
<article class=' col-sm-6 col-xs-12'>
<?php get_template_part ('template-parts/content/content', 'pack');?>
</article>
<article class=' col-sm-6 col-xs-12'>
</article>
<?php
Thanks in advance for all your help and orientation .