Template:Bgcolor
Jump to navigation
Jump to search
style="background-color:{{{1}}};"
Usage
This template generates CSS for table cell backgrounds, for use in wiki markup tables. It takes one or two colour inputs, which can be hex including the hash (eg. #69B3E7
) or a web colour term (eg. aquamarine
).
If only one colour is specified, the box background is that colour. If two are specified, the background shades a gradient from one to the other, top left to bottom right.
Example:
{| class="wikitable" style="text-align:center" ! !! A !! B |- ! 1 | {{bgcolor|yellow}} | O | {{bgcolor|white|grey}} | X |- ! 2 | {{bgcolor|#aaffaa}} | ? | {{bgcolor|#ffaaff}} | ! |}
produces:
A | B | |
---|---|---|
1 | O | X |
2 | ? | ! |