I’m modifying a WordPress theme that’s built upon Bootstrap and would like to get content that will appear in one div
to be distributed over two even height columns. Can this easily be done via the Bootstrap framework or CSS?
Thanks.
Leave a Reply
You must be logged in to post a comment.
What you can do is use some of the new CSS3 elements.
Please note that this will only work on the latest browsers and in most cases will require browser prefix’s
As you can see, you have to call the browser specific calls for
webkit
andmoz
. There’s a lot of extra functionality about setting widths and other such information so reading some docs on it will be useful.Below are a couple of links about how to usage and where its supported
Read more: MDN
Browser support: Caniuse
this is the only available solution with bootstrap :
LIVE DEMO
if the content of your
div
is a text you can’t manage to display this content in two column , you have to use otherdiv's
inside this container .