-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create examples for right-aligned table cells
- Add numerical table cell example with right-aligned numbers - Update table example to compare left-aligned text - Update guidance for right-aligned table cells and link to tabular numbers
- Loading branch information
Gemma Leigh
committed
Nov 25, 2014
1 parent
9f2b2ce
commit da33ee5
Showing
4 changed files
with
53 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<table> | ||
<thead> | ||
<tr> | ||
<th></th> | ||
<th class="numerical" scope="col">Business Plan</th> | ||
<th class="numerical" scope="col">Actual</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td>Vehicle volumes</td> | ||
<td class="numerical">103,672,000</td> | ||
<td class="numerical">97,424,000</td> | ||
</tr> | ||
<tr> | ||
<td>Driver volumes</td> | ||
<td class="numerical">16,891,000</td> | ||
<td class="numerical">15,197,000</td> | ||
</tr> | ||
<tr> | ||
<td>Electronic take-up target</td> | ||
<td class="numerical">54%</td> | ||
<td class="numerical">-</td> | ||
</tr> | ||
<tr> | ||
<td>Electronic take-up (actual)</td> | ||
<td class="numerical">-</td> | ||
<td class="numerical">50.3%</td> | ||
</tr> | ||
</tbody> | ||
</table> |