question archive Provide code to display the content of all div elements in a column layout with the minimum width of each column set to 200 pixels
Subject:Computer SciencePrice:2.86 Bought3
Provide code to display the content of all div elements in a column layout with the minimum width of each column set to 200 pixels. Use browser extensions in your code.

Code:
div {
-moz-column-width: 200px;
-webkit-column-width: 200px;
column-width: 200px;
}

