Template:Infobox: Difference between revisions

From VrlWiki
Jump to navigation Jump to search
Jadrian Miles (talk | contribs)
No edit summary
Jadrian Miles (talk | contribs)
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
<div style="background:#{{{background|E8E8FF}}}; border:{{{border|1px dashed black}}}; padding:{{{padding|5px}}}; margin:{{{margin|1em 0em}}};">{{{content|{{{1}}}}}}</div><noinclude>
<div style="background-color:{{{background|#F4F9F4}}}; border:{{{border|1px dashed #183856}}}; padding:{{{padding|0.5em}}}; margin:{{{margin|1em 0em}}};">{{{content|{{{1}}} }}}</div><noinclude>


The following parameters to this template are defined:
The following parameters to this template are defined:
* '''content''': the contents of the box.  No default value is defined.
* '''content''': the contents of the box.  No default value is defined.
* '''background''': the background color as a raw hex integer.  Default value is ''E8E8FF''.
* '''background''': the background color.
* '''border''': a CSS-format border style string.  Default value is ''1px dashed black'.
* '''border''': a CSS-format border style string.
* '''padding''': box padding.  Default value is ''5px''.
* '''padding''': box padding.
* '''margin''': box margin.  Default value is ''1em 0em''.
* '''margin''': box margin.


You if you don't specify the name of the first parameter, it is assumed to be '''content'''.
You can also give the specify the contents of the box in an unnamed parameter; see the examples below.


=== Examples ===
=== Examples ===
Line 20: Line 20:
|-
|-
| <pre><nowiki>{{Infobox|Hello world!}}</nowiki></pre> || {{Infobox|Hello world!}}
| <pre><nowiki>{{Infobox|Hello world!}}</nowiki></pre> || {{Infobox|Hello world!}}
|-
| <pre><nowiki>{{Infobox|background=yellow|Hello world!}}</nowiki></pre> || {{Infobox|background=yellow|Hello world!}}
|-
| <pre><nowiki>{{Infobox|border=2px solid red|Hello world!}}</nowiki></pre> || {{Infobox|border=2px solid red|Hello world!}}
|}
|}


</noinclude>
</noinclude>

Latest revision as of 00:48, 11 February 2009

{{{1}}}

The following parameters to this template are defined:

  • content: the contents of the box. No default value is defined.
  • background: the background color.
  • border: a CSS-format border style string.
  • padding: box padding.
  • margin: box margin.

You can also give the specify the contents of the box in an unnamed parameter; see the examples below.

Examples

Code Result
{{Infobox|content=Hello world!}}
Hello world!
{{Infobox|Hello world!}}
Hello world!
{{Infobox|background=yellow|Hello world!}}
Hello world!
{{Infobox|border=2px solid red|Hello world!}}
Hello world!