Template:Div col

From AAISP Support Site
File:Template-info.png Template documentation[view] [edit] [history] [purge]
CSS3 multiple column layout
browser support
Internet
Explorer
Firefox Safari Chrome Opera
≤ 9 ≤ 1.0 ≤ 2 N/A ≤ 11.0
10
(2012)
≥ 1.5
(2005)
≥ 3
(2007)
≥ 1
(2008)
≥ 11.1
(2011)

This template, together with {{div col end}}, is used to make a list into columns, with the option of specifying a smaller font. It has the advantage over other column templates (i.e. {{col-begin}}) that it automatically breaks each column to an equal space, so you do not manually have to find the "half way" point on two columns, for instance.

This template can create multiple columns in web browsers which support one of the following CSS properties:

Usage

cols = (or {{{1}}})
Specifies the number of columns. Defaults to 2 columns.
colwidth = (or {{{2}}})
Specifies the width of columns, and determines dynamically the number of columns based on screen width; more columns will be shown on wider displays. This overrides the cols= setting.
rules =
produces vertical rules between the columns if set to yes.
small =
Specifies small font size (90%) if set to yes.
style =
Specify any custom styling.

Examples

{{Div col}}
* a
* b
* c
* d
* e
* f
* g
* h
{{Div col end}}
Produces
  • a
  • b
  • c
  • d
  • e
  • f
  • g
  • h
{{Div col|3}}
* a
* b
* c
* d
* e
* f
* g
* h
{{Div col end}}
Produces
  • a
  • b
  • c
  • d
  • e
  • f
  • g
  • h
{{Div col||10em}}
* a
* b
* c
* d
* e
* f
* g
* h
{{Div col end}}
Produces
  • a
  • b
  • c
  • d
  • e
  • f
  • g
  • h
{{Div col|rules=yes}}
* a
* b
* c
* d
* e
* f
* g
* h
{{Div col end}}
Produces
  • a
  • b
  • c
  • d
  • e
  • f
  • g
  • h
{{Div col|small=yes}}
* a
* b
* c
* d
* e
* f
* g
* h
{{Div col end}}
Produces
  • a
  • b
  • c
  • d
  • e
  • f
  • g
  • h

TemplateData

See main template page.

See also



es:Plantilla:Div col

TemplateData

This is the TemplateData documentation for the template used by the new VisualEditor.

Div col

<templatedata> {

"description": "Breaks a list into columns. It automatically breaks each column to an equal space, so you do not manually have to find the half way point on two columns. The list is closed with .",

   "params": {
       "cols": {
           "label": "cols",
           "description": "Specifies the number of columns.",
           "type": "string",
           "default": "2",
           "aliases": ["1"],
           "required": false
       },
       "colwidth": {
           "label": "colwidth",
           "description": "Specifies the width of columns, and determines dynamically the number of columns based on screen width; more columns will be shown on wider displays. This overrides the 'cols' setting.",
           "type": "string",
           "aliases": ["2"],
           "required": false
       },
       "rules": {
           "label": "rules",
           "description": "Produces vertical rules between the columns if set to yes.",
           "type": "string",
           "required": false
       },
       "small": {
           "label": "small",
           "description": "Specifies small font size (90%) if set to yes.",
           "type": "string",
           "required": false
       },
       "style": {
           "label": "style",
           "description": "Specify any custom styling.",
           "type": "string",
           "required": false
       }
   }

} </templatedata>