I'm writing a sample page that uses external CSS sheet and I'm trying to split the content on the page into 3 different section (left, center, right) so that basically one section is on the left side, one is in the middle and one is on the right side. I tried using columns as so:\[code\].column { /* setting the number of columns to 3 */ -webkit-column-count: 3; -moz-column-count: 3; -o-column-count: 3; column-count: 3; /* setting the space between columns to 30px */ -webkit-column-gap: 52px; -moz-column-gap: 30px; -o-column-gap: 30px; column-gap: 30px;}\[/code\]but this just splits the content into 3 different columns and text from one section/column overlaps into another section/column where its not supposed to be.Is there a way I can do this so that I can create formatting for each without affecting the others?