aboutsummaryrefslogtreecommitdiff
path: root/docs/components/forms.md
diff options
context:
space:
mode:
authorBardi Harborow <[email protected]>2016-11-08 23:36:04 +1100
committerBardi Harborow <[email protected]>2016-11-09 01:14:48 +1100
commitb4dbc69f0edba28ea1a9be4aacb3e9f68c3604a9 (patch)
tree74616a5e3b4244783dab34ab2ef8391b29aa5373 /docs/components/forms.md
parente63c617fe4918d0aae95a81ed38590bacf5f5c7f (diff)
downloadbootstrap-b4dbc69f0edba28ea1a9be4aacb3e9f68c3604a9.tar.xz
bootstrap-b4dbc69f0edba28ea1a9be4aacb3e9f68c3604a9.zip
Fix broken and redirected links.
Diffstat (limited to 'docs/components/forms.md')
-rw-r--r--docs/components/forms.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/components/forms.md b/docs/components/forms.md
index 2a2e9f9d2..8d758c15e 100644
--- a/docs/components/forms.md
+++ b/docs/components/forms.md
@@ -585,7 +585,7 @@ Add the `disabled` attribute to a `<fieldset>` to disable all the controls withi
{% callout warning %}
#### Caveat about link functionality of `<a>`
-By default, browsers will treat all native form controls (`<input>`, `<select>` and `<button>` elements) inside a `<fieldset disabled>` as disabled, preventing both keyboard and mouse interactions on them. However, if your form also includes `<a ... class="btn btn-*">` elements, these will only be given a style of `pointer-events: none`. As noted in the section about [disabled state for buttons]({{ site.baseurl }}/buttons/#disabled-state) (and specifically in the sub-section for anchor elements), this CSS property is not yet standardized and isn't fully supported in Opera 18 and below, or in Internet Explorer 11, and won't prevent keyboard users from being able to focus or activate these links. So to be safe, use custom JavaScript to disable such links.
+By default, browsers will treat all native form controls (`<input>`, `<select>` and `<button>` elements) inside a `<fieldset disabled>` as disabled, preventing both keyboard and mouse interactions on them. However, if your form also includes `<a ... class="btn btn-*">` elements, these will only be given a style of `pointer-events: none`. As noted in the section about [disabled state for buttons]({{ site.baseurl }}/components/buttons/#disabled-state) (and specifically in the sub-section for anchor elements), this CSS property is not yet standardized and isn't fully supported in Opera 18 and below, or in Internet Explorer 11, and won't prevent keyboard users from being able to focus or activate these links. So to be safe, use custom JavaScript to disable such links.
{% endcallout %}
{% callout danger %}