diff options
| author | Mark Otto <[email protected]> | 2016-10-18 19:31:47 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-10-18 19:31:47 -0700 |
| commit | 2e4fab63de2a476c11df12388f67b234732a2830 (patch) | |
| tree | ae652d5939e8eb74d4e22bbe61651638fc399105 | |
| parent | 62a129184d144de67349ff300a315c42dadc8712 (diff) | |
| download | bootstrap-2e4fab63de2a476c11df12388f67b234732a2830.tar.xz bootstrap-2e4fab63de2a476c11df12388f67b234732a2830.zip | |
fix markup validation
| -rw-r--r-- | docs/utilities/vertical-align.md | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/docs/utilities/vertical-align.md b/docs/utilities/vertical-align.md index 8e03e58a6..09ae115b0 100644 --- a/docs/utilities/vertical-align.md +++ b/docs/utilities/vertical-align.md @@ -23,11 +23,15 @@ With table cells: {% example html %} <table style="height: 100px;"> - <td class="align-baseline">baseline</td> - <td class="align-top">top</td> - <td class="align-middle">middle</td> - <td class="align-bottom">bottom</td> - <td class="align-text-top">text-top</td> - <td class="align-text-bottom">text-bottom</td> + <tbody> + <tr> + <td class="align-baseline">baseline</td> + <td class="align-top">top</td> + <td class="align-middle">middle</td> + <td class="align-bottom">bottom</td> + <td class="align-text-top">text-top</td> + <td class="align-text-bottom">text-bottom</td> + </tr> + </tbody> </table> {% endexample %} |
