Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/site/docs
diff options
context:
space:
mode:
authorMark Otto <markd.otto@gmail.com>2020-05-14 09:18:01 +0300
committerGitHub <noreply@github.com>2020-05-14 09:18:01 +0300
commit58dd4cc66c486e796ce341b49eabeb5c36677592 (patch)
tree932a4973cab15eb33acee3c0b38f1623445ce109 /site/docs
parenta8eb919f44b66f6c9937baf8a81e9411718934c2 (diff)
v4: Update docs callout for responsive SVG images (#30809)
Turns out this applies to IE11 as well as IE10, so this clarifies the docs callout. Closes #25242. Co-authored-by: XhmikosR <xhmikosr@gmail.com>
Diffstat (limited to 'site/docs')
-rw-r--r--site/docs/4.5/content/images.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/site/docs/4.5/content/images.md b/site/docs/4.5/content/images.md
index 3ff822bed5..15b4f2988e 100644
--- a/site/docs/4.5/content/images.md
+++ b/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" %}