Template:Table Alignment/tables.css

From Picayune Dreams Wiki
Jump to navigation Jump to search


Purpose

This template's purpose is to make it simpler to align the columns in tables with less wikicode.

Usage

To use, place {{Table Alignment}} just before the table and then add some classes to the table.

classname Purpose
defaultleft Align all table cells left by default
defaultcenter Align all table cells center by default
defaultright Align all table cells right by default
colNleft Align the cells in column N left, where N is a number
colNcenter Align the cells in column N center, where N is a number
colNright Align the cells in column N right, where N is a number

With the wikitable class the header cell content is always centered unless individually adjusted.

The col and default classes never affect the header cells (column, row, or anywhere) if the wikitable class is used. The col class overrides the default class.

If the wikitable class is not used, then col and default effect header cells.

Limitations

  • Column numbers up to col19 are supported. A table can have more columns but they cannot be aligned with this method.
  • On tables using rowspan or colspan, using the classes may not work well on those rows because the alignment appears in wrong cells. Normal table code can be added to individual cells, both to get the wanted alignment and override unwanted alignment.