tags:

views:

28

answers:

1

Hello I would like to use css3 to present a two column layout.

The markup i am using is this

<div style="-webkit-column-count: 2;
            -webkit-column-rule: 1px solid black;
            -webkit-column-width: 80px;
             margin-left:20px;margin-top:20px;" 
>

        <div id="picturebox" style="">picture box</div>

        <div id="nme">name</div>

       </div>

Is there a way to give one column a width of 20px and one column a width of say 80px?

Thanks

Hairby

+1  A: 

No, there isn't a way.

The feature is designed for content that flows between equal columns.

David Dorward