Is there a way to specify different width to columns in CSS3?
- by hairbymaurice
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