टेम्पलेट:Multicol

विकिपीडिया से
{{Multicol|[overall width]|[gutter width]}} {{Start multicol|[overall width]|[gutter width]}}
…… ……
{{Multicol break}} {{Break multicol}}
…… ……
{{Multicol break}} {{Break multicol}}
…… ……
(etc) (etc)
{{Multicol end}} {{End multicol}}

Usage[संपादन करीं]

{{Multicol}} or {{Start multicol}} is used to start a multi-columned section of a page. Between each column's contents, insert {{Multicol break}} or {{Break multicol}} and close the last column with {{Multicol end}} or {{End multicol}}. For example:

<div style="background:lavender;">
{{Multicol}}              [or {{Start multicol}}]
First column's contents.
{{Multicol break}}        [or {{Break multicol}}]
Second column's contents.
{{Multicol break}}
Third column's contents.
{{Multicol end}}          [or {{End multicol}}]
</div>

…produces:

First column's contents.

Second column's contents.

Third column's contents.

Each column will be the same width (equally dividing the available horizontal space) and will include a small 20-pixel righthand margin (a "gutter") that prevents the contents in one column from touching those in the column to its right. (For further examples of how this template can be used, see User:franl's userpage.)

While it is technically possible to have many columns, accessibility implies that the use of any more than four or five should usually be avoided. If the number of items listed is fewer than six (e.g. fewer than two columns of three items), a column-based format is probably also best avoided.

Parameters[संपादन करीं]

This template has two optional parameters: the overall width of the set of columns and the width of the gutter. The overall width of the set of columns can be an absolute value (e.g. 40em) or a percentage of the available page width (e.g. 50%). It defaults to 100%. The second parameter is the gutter used between columns (which, as mentioned above, defaults to 20px).

{{Multicol break}} / {{Break multicol}} also takes an optional parameter for the gutter to its right, defaulting to 20px.

Example[संपादन करीं]

To create a three-column section, with four-pixel righthand gutters, that extends across 50% of the available width:

{{Start multicol |50% |4px}}
First column's contents.
{{Break multicol |4px}}
Second column's contents.
{{Break multicol |4px}}
Third column's contents.
{{End multicol}}

Result:

First column's contents.

Second column's contents.

Third column's contents.

A {{Multicol}}umned region is left-aligned with regard to the area of the page (the "block") it occupies. This may be switched to a centered or righthand alignment thus:

Centered
 <div style="text-align:center;">
 {{startcenter}}
 {{Start multicol (...) }}
 ......
 {{End multicol}}
 {{endcenter}}
 </div>
Righthand side
 <div style="text-align:right;">
 {{Start multicol (...) }}
 ......
 {{End multicol}}
 </div>

Related templates[संपादन करीं]

Layouts rendered by {{Multicol}} and accompanying templates may also be produced by {{Col-begin}} and its accompanying templates, but, depending on context and requirements, it may be easier to use one set rather than the other. Each of the following examples produce the same three-column table in which all columns have equal width:

{{Multicol}}
Column 1
{{Multicol-break}}
Column 2
{{Multicol-break}}
Column 3
{{Multicol-end}}
{{Col-begin}}
{{Col-3}}
Column 1
{{Col-3}}
Column 2
{{Col-3}}
Column 3
{{Col-end}}

It's simpler to add more columns to the {{Multicol}} example than to the {{Col-begin}} example, because in the latter case, all occurrences of {{Col-3}} would need to be changed to {{Col-4}}.

These templates groups are not interchangeable. If you start with {{Multicol}}, but end with the plain {{col-end}} templates, then you'll have an unclosed <div> tag that can harm the formatting of the rest of the page. The problems created by mixing these templates is not easily visible for all users, so please don't assume that it's working properly just because it looks right for you. If you start with {{Multicol}}, then you must use {{Multicol-break}} and {{Multicol-end}}, not {{col-break}} and {{col-end}} (and vice versa).

TemplateData[संपादन करीं]

This is the TemplateData documentation for this template used by VisualEditor and other tools.

TemplateData for multicol

Starts a multi-column section. Subsequent columns are started by {{multicol-break}} and the section is ended with {{multicol-end}}

Template parameters[Edit template data]

ParameterDescriptionTypeStatus
Table width1

Width of table, a CSS width e.g. '50%'.

Default
100%
Stringoptional
Column width2

Width of the first column.

Default
20px
Stringoptional



इहो देखल जाय[संपादन करीं]

Column-generating template families[संपादन करीं]

Family Type
Handles wiki
 table code?dagger
Start template Column divider End template
"Col" Table Yes {{Col-begin}}
or {{Col-begin-small}}
{{Col-break}}
{{Col-2}} .. {{Col-5}}
{{Col-end}}
"Columns" Table No {{Columns}}
"Col-float" CSS float Yes {{Col-float}} {{Col-float-break}} {{Col-float-end}}
"Columns-start" CSS float Yes {{Columns-start}} {{Column}} {{Columns-end}}
"Div col" CSS columns Yes {{Div col}}
– {{Columns-list}} (wrapper)
{{Div col end}}

dagger I.e., can the columns handle the wiki markup {| | || |- |} used to create tables? If not, templates that produce these elements (such as {{(!}}, {{!}}, {{!!}}, {{!-}}, {{!)}}) and/or HTML tags (<table>...</table>, <tr>...</tr>, etc.) will need to be used instead.