Template:Hs
Jump to navigation
Jump to search
{{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 |