Im using a multi column div. Please see CSS below:
<div id="content">
Super duper long text....
</div>
#content {
-webkit-column-width: 300px!IMPORTANT;
-moz-column-width: 300px!IMPORTANT;
column-width: 300px!IMPORTANT;
}
It works just fine. All of my columns are 300px. Is there any way to make the first column 500px using css?