Template:Bgcolor

From BlogNomic Wiki
Revision as of 09:00, 16 August 2024 by Kevan (talk | contribs)
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 ? !

Related templates

  • Template:Gridcell, the same template but which also sets a minimum, square height and width for the cell