Difference between revisions of "Template:Div col/doc"

From blackwiki
Jump to navigation Jump to search
imported>WOSlinker
(remove {{pp-template}})
imported>Edokter
(→‎Usage: Columns do not support percetages)
Line 13: Line 13:
  
 
; cols    =: Specifies the number of columns.  Defaults to 2.
 
; cols    =: Specifies the number of columns.  Defaults to 2.
; colwidth =: Can be used instead of <tt>cols</tt> to set the number of columns based on width instead. <tt>colwidth=200px</tt> will result in more columns being shown on wider displays, while <tt>colwidth=33%</tt> will result in three columns.
+
; colwidth =: Can be used instead of <tt>cols</tt> to set the number of columns based on width instead. <tt>colwidth=200px</tt> will result in more columns being shown on wider displays.
 
; small    =: Specifies small font size (90%) if set to <tt>yes</tt>.
 
; small    =: Specifies small font size (90%) if set to <tt>yes</tt>.
  

Revision as of 01:17, 24 December 2010

This template 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:

Therefore, the template does not work in browsers such as Internet Explorer and Opera (see Template:Reflist#Browser support for columns).

Usage

cols =
Specifies the number of columns. Defaults to 2.
colwidth =
Can be used instead of cols to set the number of columns based on width instead. colwidth=200px will result in more columns being shown on wider displays.
small =
Specifies small font size (90%) if set to yes.

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|cols=3}}
* a
* b
* c
* d
* e
* f
* g
* h
{{Div col end}}
Produces
  • a
  • b
  • c
  • d
  • e
  • f
  • g
  • h
{{div col|colwidth=10em}}
* 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

See also