Difference between revisions of "Template:Bgcolor"

From BlogNomic Wiki
Jump to navigation Jump to search
Line 28: Line 28:
 
| {{bgcolor|#ffaaff}}    | !
 
| {{bgcolor|#ffaaff}}    | !
 
|}
 
|}
 +
 +
==Related templates==
 +
* [[Template:Gridcell]], the same template but which also sets a minimum, square height and width for the cell
 +
 
[[Category:Display templates]]</noinclude>
 
[[Category:Display templates]]</noinclude>

Revision as of 09:00, 16 August 2024

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