መለጠፊያ:Column-count
Appearance
This template starts a multi-column div in web browsers which support one of the following CSS properties:
- -moz-column-count (for Mozilla/Gecko based browsers such as Firefox)
- -webkit-column-count (for WebKit based browsers such as Safari and Google Chrome)
- column-count (for CSS3 compliant browsers)
It's basically a shortcut to set the same value for all three of these properties at once (the way column-count will work once browsers implement it). The default is 2.
Example
[ኮድ አርም]{{column-count|3}} * a * b * c * d * e * f * g * h </div>
- creates
- a
- b
- c
- d
- e
- f
- g
- h
Remember to close the div.