aboutsummaryrefslogtreecommitdiff
path: root/docs/css.html
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2013-06-25 16:31:12 -0700
committerChris Rebert <[email protected]>2013-06-25 16:31:12 -0700
commit266bdfcaaaa64b9e71fa3719a9b2e6b27fb6c2a1 (patch)
tree46f39cf77a878fff413d440f2be8a471c1e7a754 /docs/css.html
parentac90fbf4d815accf8c3e0c3c355ca6643dcabce9 (diff)
downloadbootstrap-266bdfcaaaa64b9e71fa3719a9b2e6b27fb6c2a1.tar.xz
bootstrap-266bdfcaaaa64b9e71fa3719a9b2e6b27fb6c2a1.zip
rm :invalid styling from docs
It was removed from the code in 90d4343f66d1cdafe24b6de0dbb6ae64312df323 :-/
Diffstat (limited to 'docs/css.html')
-rw-r--r--docs/css.html15
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/css.html b/docs/css.html
index 1d8cee56d..2f7d74708 100644
--- a/docs/css.html
+++ b/docs/css.html
@@ -1382,21 +1382,6 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<input id="focusedInput" type="text" value="This is focused...">
{% endhighlight %}
- <h3 id="forms-invalid-inputs">Invalid inputs</h3>
- <p>Style inputs via default browser functionality. Specify a <code>type</code>, add the <code>required</code> attribute if the field is not optional, and (if applicable) specify a <code>pattern</code>.</p>
-
- <div class="bs-callout">
- <h4>Cross-browser compatibility</h4>
- <p>Invalid inputs are styled via the <code>:invalid</code> CSS selector, which is not supported by Internet Explorer 9 and below.</p>
- </div>
-
- <form class="bs-example">
- <input type="email" placeholder="[email protected]" required>
- </form>
-{% highlight html %}
-<input type="email" placeholder="[email protected]" required>
-{% endhighlight %}
-
<h3 id="forms-disabled-inputs">Disabled inputs</h3>
<p>Add the <code>disabled</code> attribute on an input to prevent user input and trigger a slightly different look.</p>
<form class="bs-example">