Difference between revisions of "Help:Tables"

From Nookipedia, the Animal Crossing wiki
(Created page with "This article is all about using '''tables''' on '''Animal Crossing Wiki'''. It will teach you how to create tables in various articles. ==Creating Tables== To create a table you...")
 
Line 57: Line 57:
 
|}
 
|}
 
</td></tr></table>
 
</td></tr></table>
<p>As you can see, each new line starting with <code>|</code> is a new column and <code>|-</code> is a new row. With tables <code>!</code> is bold, centered text. Both HTML and CSS can be used in tables for borders etc.
+
<p>As you can see, each new line starting with <code>|</code> is a new cell and <code>|-</code> is a new row. Using <code>!</code> instead of <code>|</code> to start a line creates bold, centered text. Both HTML and CSS can be used in tables for borders, etc.
 
</p><p><br />
 
</p><p><br />
 
</p>
 
</p>

Revision as of 16:17, October 26, 2010

This article is all about using tables on Animal Crossing Wiki. It will teach you how to create tables in various articles.

Creating Tables

To create a table you first need to begin with {| and end with |}. An example is below

You type You get
{|
! Item
! Amount
! Cost
|-
|Orange
|10
|7.00
|-
|Bread
|4
|3.00
|-
|Butter
|1
|5.00
|-
!Total
|
|15.00
|}
Item Amount Cost
Orange 10 7.00
Bread 4 3.00
Butter 1 5.00
Total 15.00

As you can see, each new line starting with | is a new cell and |- is a new row. Using ! instead of | to start a line creates bold, centered text. Both HTML and CSS can be used in tables for borders, etc.