diff options
| author | Mark Otto <[email protected]> | 2015-09-01 21:11:53 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-09-01 21:11:53 -0700 |
| commit | 29c3eddaeb323299cd37796d893ed475ac1a29bd (patch) | |
| tree | ad3e025837af88a9ba58810b576e7850c44de4ec /docs/content/typography.md | |
| parent | d11980048945f10504b1f37917e585b29c75f461 (diff) | |
| download | bootstrap-29c3eddaeb323299cd37796d893ed475ac1a29bd.tar.xz bootstrap-29c3eddaeb323299cd37796d893ed475ac1a29bd.zip | |
fixes #17412: reverse display heading classes to match h1-h6 headings
Diffstat (limited to 'docs/content/typography.md')
| -rw-r--r-- | docs/content/typography.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/content/typography.md b/docs/content/typography.md index 264686b05..e97593e2e 100644 --- a/docs/content/typography.md +++ b/docs/content/typography.md @@ -85,26 +85,26 @@ Traditional heading elements are designed to work best in the meat of your page <table class="table"> <tbody> <tr> - <td><h1 class="display-4">Display 4</h1></td> + <td><h1 class="display-1">Display 1</h1></td> </tr> <tr> - <td><h1 class="display-3">Display 3</h1></td> + <td><h1 class="display-2">Display 2</h1></td> </tr> <tr> - <td><h1 class="display-2">Display 2</h1></td> + <td><h1 class="display-3">Display 3</h1></td> </tr> <tr> - <td><h1 class="display-1">Display 1</h1></td> + <td><h1 class="display-4">Display 4</h1></td> </tr> </tbody> </table> </div> {% highlight html %} -<h1 class="display-4">Display 4</h1> -<h1 class="display-3">Display 3</h1> -<h1 class="display-2">Display 2</h1> <h1 class="display-1">Display 1</h1> +<h1 class="display-2">Display 2</h1> +<h1 class="display-3">Display 3</h1> +<h1 class="display-4">Display 4</h1> {% endhighlight %} ## Lead |
