📊 Quick Guide: Adding Tables to Your Posts
Tables are great for leaderboards, bug reports, rosters, or any info you want organized neatly.
1️⃣ How to Write a Table
🔹 Code (what you type)
| Name | Platform | Rank |
|-------|----------|------|
| Paul | Xbox | Gold |
| Jamie | PC | Plat |
🔹 Result (what it looks like)
| Name |
Platform |
Rank |
| Paul |
Xbox |
Gold |
| Jamie |
PC |
Plat |
2️⃣ Quick Tips
- First row = column titles
- Second row = separator (must have
---)
- Every row starts & ends with
|
- Use
| between each column
Minimum working table:
| A | B |
|---|---|
| 1 | 2 |
3️⃣ Styling Ideas
Users can’t change colours per row, but admins can style all tables globally:
- Alternating row colours →
table tr:nth-child(even) { background-color: #2a2a2a; }
- Header styling →
table th { background-color: #111; color: #00ffcc; }
- Hover effect →
table tr:hover { background-color: #333; }
4️⃣ Blank Template to Copy
| Column 1 | Column 2 | Column 3 |
|----------|----------|----------|
| | | |
| | | |
Copy the template, replace with your info, and post! 🎮