Is there a way to specify different widths for columns in CSS3?

Joe Morris picture Joe Morris · Mar 16, 2010 · Viewed 19.4k times · Source

I would like to use CSS 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?

Answer

Quentin picture Quentin · Mar 16, 2010

No, there isn't a way.

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