Help:Wiki University Wikitext--Tables - Column headings
Lessons
- HOME
- Introduction
- Headers
- Lists
- Nesting Lists
- Links
- Broken Links
- Comments
- Categories
- Image Embedding
- Image Tooltips & Borders
- Image Links
- Images & Text; Embedding PDF
- Snipping Tool & Paint
- Paragraphs
- Inline Styling
- Changing Fonts
- Font Colors
- Backgrounds
- Multi-attributes
- Font Bold-Italics
- Div Tag - Intro
- Borders
- Padding
- Margins
- Width and Height
- Alignment - Horizontal
- Tables
- Breadcrumb Trails
- Ref/Footnotes
- SEO
Intermediate
Advanced
Flexbox
Additional Helps
Table column headings[edit | edit source]
! |
- We have a title for our table, but what do the columns represent?
- To label the columns we use exclamation marks: !
- Unlike the caption, we have to have a row tag before the exclamation marks:
|-
!
!
!
!
- Here are the column headings for our healthy foods table:
|-
! Fruits
! Vegetables
! Nuts
! Grains
Fruits | Vegetable | Nuts | Grains |
---|---|---|---|
Apples | Peas | Peanuts | Wheat |
Pears | Carrots | Walnuts | Oats |
Cherries | Corn | Cashews | Barley |
Oranges | Beans | Almonds | Buckwheat |
- NOTICE there are no borders on column headings.
- NOTICE the headings centered by default in the heading cell.
- NOTICE the font is bold as well.
- NOTICE the table border will expand as you add rows and/or column headers.
Changing column headings[edit | edit source]
- To put a border on the heading cells, we will use our border attribute
- To make the headings really stand out let's add a background color as well.
Here is what the table will look like with borders, centered text and background color:
Fruits | Vegetable | Nuts | Grains |
---|---|---|---|
Apples | Peas | Peanuts | Wheat |
Pears | Carrots | Walnuts | Oats |
Cherries | Corn | Cashews | Barley |
Oranges | Beans | Almonds | Buckwheat |
Here is the coding:
{| style="border:1px solid red"
|+ style="font-size:24pt; margin-bottom:15px; font-family:new times roman; " | Healthy Foods
|-
! style="
border:1px solid red;
width:25%;
background-color:lightgreen
" |Fruits
! style="
border:1px solid red;
width:25%;
background-color:lightgreen
" |Vegetable
! style="
border:1px solid red;
width:25%;
background-color:lightgreen
" |Nuts
! style="
border:1px solid red;
width:25%;
background-color:lightgreen
" |Grains
|-
| style="border:1px solid red" | Apples
| style="border:1px solid red" | Peas
| style="border:1px solid red" | Peanuts
| style="border:1px solid red" | Wheat
|-
| style="border:1px solid red" | Pears
| style="border:1px solid red" | Carrots
| style="border:1px solid red" | Walnuts
| style="border:1px solid red" | Oats
|-
| style="border:1px solid red" | Cherries
| style="border:1px solid red" | Corn
| style="border:1px solid red" | Cashews
| style="border:1px solid red" | Barley
|-
| style="border:1px solid red" | Oranges
| style="border:1px solid red" | Beans
| style="border:1px solid red" | Almonds
| style="border:1px solid red" | Buckwheat
- NOTICE the width attribute was moved into the heading tags so we know where they are. They could have stayed where they were or with any other cells in the columns.
You can change the font, font size, color, etc. in these heading tags as you can in regular cells. |
Try these out[edit | edit source]
- Copy the table coding displayed directly above to your sandbox, then place a yellow border around it in the "dashed" style and with a thickness of 10 pixels.
- Make this table 500 pixels wide.
- Next place a blue border around the headings.
- change our Healthy Foods caption to a font of your choice;
- Change the background color for the headings.
- The headers are always (default) centered on the column.
- A. True
- B. False
- You can put borders in the headers column
- A. True
- B. False
- Headers are always (default) in bold type.
- A. True
- B. False