Template:Columns
Description
This template allows you to display content in multiple columns on a page. By default, it divides the content into three columns, but you can customize the number of columns by using the count= parameter. Optionally, you can add custom inline styles using the style= parameter to adjust the appearance of the columns.
Usage
| Default Usage When used with no additional parameters, the template will return a list split in 3 columns. | |
|---|---|
| You Type | You Get |
{{columns|
* Item 1
* Item 2
* Item 3
* Item 4
* Item 5
* Item 6
}}
|
|
| Count Parameter You can specify the number of columns in the output through use of the |count= parameter.
| |
| You Type | You Get |
{{columns|count=2|
* Item 1
* Item 2
* Item 3
* Item 4
* Item 5
* Item 6
}}
|
|
{{columns|count=4|
* Item 1
* Item 2
* Item 3
* Item 4
}}
|
|
| Style Parameter By passing the |style= parameter, you can alter the appearance of the column container using inline CSS styles.Note: The styles used in the example below are a small selection of the possible styles available. | |
| You Type | You Get |
{{columns|style=font-size: 150%; border: 3px solid #ddd; background-color: #efefef;|
* Item 1
* Item 2
* Item 3
* Item 4
* Item 5
* Item 6
}}
|
|
| Numbered List A numbered list can be used by replacing * with #.
| |
| You Type | You Get |
{{columns|
# Item A
# Item B
# Item C
# Item D
# Item E
# Item F
}}
|
|