Is there a way to specify different width to columns in CSS3?
Posted
by hairbymaurice
on Stack Overflow
See other posts from Stack Overflow
or by hairbymaurice
Published on 2010-03-16T10:23:39Z
Indexed on
2010/03/16
10:26 UTC
Read the original article
Hit count: 233
css3
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
© Stack Overflow or respective owner