Two css3 column text with image in the middle

I would like to achieve this result

enter image description here

There are many tutorials on how to do this , but they work with fixed text and columns. Thus, I print variable-length text inside two column layouts.

#cols { column-count: 2; column-gap: 20px; } 
 <div id="box"> <p id="cols"> Lorem Ipsum.... </p> </div> 

so I can’t use a technique like this, how can I put the image in the middle in this scenario?

+4
source share
1 answer

Here you are:
http://jsfiddle.net/aX47K/

css:

 .column{ width:300px; float:left; margin-right:20px; } .column div{ width:200px; height:210px; } #col-1 div{ float:right; } #col-2 div{ float:left; } img#center-image{ position:absolute; left:110px; } 
+2
source

All Articles