I built a website with bootstrap 3, it has a news section where each news article should look like the following:
mobile-first:
------------
| Title |
------------
------------
| Img |
------------
------------
| Content |
| Content |
------------
on bigger screens:
---------------------------
| Img | Title |
| |------------------
|-------| Content |
| | Content |
---------------------------
I don't want the content to float around the image, it should stay in its column, that is why I seek to solve this with bootstrap.
I had a look at those two articles, but they did not quite takle my problem:
- Bootstrap: change div order with pull-right, pull-left / 3 columns
- https://scotch.io/tutorials/reorder-css-columns-using-bootstrap
Update: Found this question that covers a similar case. But the ticked solution proposes to float. Is that the only way?