From a4638259a5f7358436ab24ef68e3589e30f18f0b Mon Sep 17 00:00:00 2001 From: Braden Whitten <bwhitten@buffalo.edu> Date: Wed, 7 Aug 2013 09:18:12 -0400 Subject: [PATCH] Fixed #9196 - malformed HTML in doc Stray <h3> was being closed by an </h2>. Updated to valid HTML. Fixes #9196 --- css.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css.html b/css.html index 6c760dd039..e31cd801dd 100644 --- a/css.html +++ b/css.html @@ -1257,7 +1257,7 @@ For example, <code><section></code> should be wrapped as inline. {% endhighlight %} - <h3 id="forms-inline">Inline form</h2> + <h3 id="forms-inline">Inline form</h3> <p>Add <code>.form-inline</code> for left-aligned and inline-block controls for a compact layout.</p> <div class="bs-callout bs-callout-danger"> <h4>Requires custom widths</h4> -- GitLab