User:Magill/Sandbox-table practice
Jump to navigation
Jump to search
- how to make this CSS table match the HTML table below.
- User:Magill/vector.css -- private CSS page (should be empty)
- MediaWiki:Common.css - lotro-wiki master css page
Slotted Traits
Virtue Traits | ||||
---|---|---|---|---|
Charity(14) | Compassion(14) | Justice(13) | Determination(14) | Tolerance(13) |
+2415 Resistance Rating |
+756 Physical Mitigation |
+97.5 ICMR | +42 Agility | +527 Tactical Mitigation |
+453.6 Physical Mitigation |
+417.288 NCPR | +182 Morale | +78.75 ICMR | +19 Agility |
+278.19 NCPR | +189 Tactical Mitigation |
+350.82 NCMR | +98 Morale | +4h8.75 ICMR |
Race Traits (Dwarf) | ||||
---|---|---|---|---|
Fateful Dwarf | Guile and Might Bonus | Shield Brawler | Return to Thorin's Gate | Dwarf-endurance |
changes here
Class Traits (Rune-keeper) | ||||||
---|---|---|---|---|---|---|
Closing Remarks | Thunderous Words | Harsh Debate | Memorable Prose | Master of Allusion | Rune of Endurance | Writ of Well-being |
Legendary Traits | ||
---|---|---|
Martial Training | Steady Hands | You Shall Fall to our Wrath |
Legendary Traits | ||
---|---|---|
Rain of Thorns | Bard's Arrow | Press Onward |
using class colstest
Virtue Traits | ||||
---|---|---|---|---|
Charity(14) | Compassion(14) | Justice(13) | Determination(14) | Tolerance(13) |
+2415 Resistance Rating |
+756 Physical Mitigation |
+97.5 ICMR | +42 Agility | +527 Tactical Mitigation |
+453.6 Physical Mitigation |
+417.288 NCPR | +182 Morale | +78.75 ICMR | +19 Agility |
+278.19 NCPR | +189 Tactical Mitigation |
+350.82 NCMR | +98 Morale | +4h8.75 ICMR |
Race Traits (Dwarf) | ||||
---|---|---|---|---|
Fateful Dwarf | Guile and Might Bonus | Shield Brawler | Return to Thorin's Gate | Dwarf-endurance |
Class Traits (Rune-keeper) | ||||||
---|---|---|---|---|---|---|
Closing Remarks | Thunderous Words | Harsh Debate | Memorable Prose | Master of Allusion | Rune of Endurance | Writ of Well-being |
Legendary Traits | ||
---|---|---|
Martial Training | Steady Hands | You Shall Fall to our Wrath |
Original table using html "table rules=cols"
- which is no longer supported in html5, and should be converted to css.
Virtue Traits | ||||
---|---|---|---|---|
Determination(14) | Charity(14) | Tolerance(12) | Loyalty(12) | Idealism(14) |
+42 Agility | +2415 Resistance Rating |
+486 Tactical Mitigation | +36 Vitality | +42 Fate |
78.5 ICMR | +453.6 Physical Mitigation |
+ 18 Agility | +73 Max Power | +1207 Resistance Rating |
+98 Max Morale | 278.310 NCPR | +45 ICMR | +180 Armour Value | +11 Will |
Race Traits (Dwarf) | ||||
---|---|---|---|---|
Fateful Dwarf | Guile and Might Bonus | Shield Brawler | Return to Thorin's Gate | Dwarf Axe-damage Bonus |
Class Traits (Hunter) | ||||||
---|---|---|---|---|---|---|
Fast Draw | Swift and True | Sturdy Traps | True Shot | Barbed Fury | Hail of Arrows | Shot through the Heart |
Legendary Traits | ||
---|---|---|
Rain of Thorns | Bard's Arrow | Press Onward |
notes
- W3 Schools: CSS3 column-rule Property
div { column-rule:3px outset #ff00ff; -moz-column-rule:3px outset #ff00ff; /* Firefox */ -webkit-column-rule:3px outset #ff00ff; /* Safari and Chrome */ }
column-rule: column-rule-width column-rule-style column-rule-color;
- column-count
- column-fill
- column-gap
- column-rule
- column-rule-color
- column-rule-style
- column-color
- column-style
- column-span
- column-width
columns: column-width column-count;
- columns
- W3 Schools: CSS Tables