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?
No, there isn't a way.
The feature is designed for content that flows between equal columns.