Skip to content Skip to sidebar Skip to footer

How To Flow Text In 2 Columns With Custom Style?

I'm writing a website with HTML, CSS and jQuery. I have a text that has a 2-column style and a picture before the text like this:

Solution 1:

DEMO:

Try this:

img{float:right;
    width:150px; 
    height:150px;
    background:#333;
    margin:10px;
}

div {
       -moz-column-count: 2;
       -moz-column-gap: 20px;
       -webkit-column-count: 2;
       -webkit-column-gap: 20px;
}

Post a Comment for "How To Flow Text In 2 Columns With Custom Style?"