Commit 7b4c40dd authored by Chris Rebert's avatar Chris Rebert
Browse files

Merge pull request #8630 from caouecs/patch-1

Fix example of textarea in css.html
parents c75f3748 4ca3e367
Showing with 1 addition and 1 deletion
+1 -1
...@@ -1323,7 +1323,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline. ...@@ -1323,7 +1323,7 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<textarea class="form-control" rows="3"></textarea> <textarea class="form-control" rows="3"></textarea>
</form> </form>
{% highlight html %} {% highlight html %}
<textarea rows="3"></textarea> <textarea class="form-control" rows="3"></textarea>
{% endhighlight %} {% endhighlight %}
<h3>Checkboxes and radios</h3> <h3>Checkboxes and radios</h3>
......
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