aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/twbs/bootstrap/site/docs/4.5/content
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/twbs/bootstrap/site/docs/4.5/content')
-rw-r--r--vendor/twbs/bootstrap/site/docs/4.5/content/images.md4
-rw-r--r--vendor/twbs/bootstrap/site/docs/4.5/content/reboot.md2
2 files changed, 3 insertions, 3 deletions
diff --git a/vendor/twbs/bootstrap/site/docs/4.5/content/images.md b/vendor/twbs/bootstrap/site/docs/4.5/content/images.md
index 3ff822bed..15b4f2988 100644
--- a/vendor/twbs/bootstrap/site/docs/4.5/content/images.md
+++ b/vendor/twbs/bootstrap/site/docs/4.5/content/images.md
@@ -19,9 +19,9 @@ Images in Bootstrap are made responsive with `.img-fluid`. `max-width: 100%;` an
{% endhighlight %}
{% capture callout %}
-##### SVG images and IE 10
+##### SVG images and Internet Explorer
-In Internet Explorer 10, SVG images with `.img-fluid` are disproportionately sized. To fix this, add `width: 100% \9;` where necessary. This fix improperly sizes other image formats, so Bootstrap doesn't apply it automatically.
+In Internet Explorer 10 and 11, SVG images with `.img-fluid` are disproportionately sized. To fix this, add `width: 100%;` or `.w-100` where necessary. This fix improperly sizes other image formats, so Bootstrap doesn't apply it automatically.
{% endcapture %}
{% include callout.html content=callout type="warning" %}
diff --git a/vendor/twbs/bootstrap/site/docs/4.5/content/reboot.md b/vendor/twbs/bootstrap/site/docs/4.5/content/reboot.md
index 2f0904f3f..712e3d11f 100644
--- a/vendor/twbs/bootstrap/site/docs/4.5/content/reboot.md
+++ b/vendor/twbs/bootstrap/site/docs/4.5/content/reboot.md
@@ -303,7 +303,7 @@ These changes, and more, are demonstrated below.
Reboot includes an enhancement for `role="button"` to change the default cursor to `pointer`. Add this attribute to elements to help indicate elements are interactive. This role isn't necessary for `<button>` elements, which get their own `cursor` change.
{% capture example %}
-<span role="button">Non-button element button</span>
+<span role="button" tabindex="0">Non-button element button</span>
{% endcapture %}
{% include example.html content=example %}