Commit 0e7aad8b authored by James Holland's avatar James Holland
Browse files

Update typo css.html move double class .form-control from label in example mark up to input

missed the double class in label in recent commit #8621
parent 2a51ebf6
3 merge requests!8635ignore Gruntfile.js in jekyll,!8624Update typo css.html move double class .form-control from label in examp...,!8656Added rel="stylesheet" to CDN-Examples
Showing with 2 additions and 2 deletions
+2 -2
...@@ -1278,9 +1278,9 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline. ...@@ -1278,9 +1278,9 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
{% highlight html %} {% highlight html %}
<form class="form-horizontal"> <form class="form-horizontal">
<div class="row"> <div class="row">
<label for="inputEmail" class="form-control" class="col-lg-2 control-label">Email</label> <label for="inputEmail" class="col-lg-2 control-label">Email</label>
<div class="col-lg-10"> <div class="col-lg-10">
<input type="text" id="inputEmail" placeholder="Email"> <input type="text" class="form-control" id="inputEmail" placeholder="Email">
</div> </div>
</div> </div>
<div class="row"> <div class="row">
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment