Template:Hs: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 40: | Line 40: | ||
|} | |} | ||
</noinclude> | </noinclude> | ||
{| | <includeonly>{| | ||
|- | |- | ||
| {{{1}}}|| width={{{2}}}px | ||{{{3}}} | | {{{1}}}|| width={{{2}}}px | ||{{{3}}} | ||
|} | |}</includeonly> | ||
Latest revision as of 00:29, 6 March 2007
{{hs|abc|200|def}}
{{hs|g|200|h}}
gives:
| abc | def |
| g | h |
{{hs1|abc|200|def}}
{{hs1|g|200|h}}
gives:
| abc | def |
| g | h |
The latter is equivalent with
{|
|-
| width=200px | abc || def
|-
| g || h
|}
which gives:
| abc | def |
| g | h |