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

github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2020-10-28 05:17:59 +0300
committerMark Otto <markdotto@gmail.com>2020-10-28 05:17:59 +0300
commit76d2f2896da1158aef6680c4a9e3985d117658ec (patch)
tree97a7403165d4ecb2de48c0dd6d7bc697089eaa16
parent64e929b601ab9e0873bce2181b629f6ba4c67b05 (diff)
parent96d88d9864baca9848e29589370aef1c75b24acc (diff)
Merge branch 'patch-2' of https://github.com/bastienmoulia/icons into bastienmoulia-patch-2
-rw-r--r--docs/content/_index.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/content/_index.md b/docs/content/_index.md
index 84b485347..b7e05fa45 100644
--- a/docs/content/_index.md
+++ b/docs/content/_index.md
@@ -132,4 +132,10 @@ SVGs are awesome to work with, but they do have some known quirks to work around
- **Safari skips `aria-label` when used non-focusable SVGs.** As such, use `aria-hidden="true"` when embedding the `<svg>` file and use CSS to visually hide an equivalent label. [More details here.](https://simplyaccessible.com/article/7-solutions-svgs/#acc-heading-6)
+- **SVG external sprites are not working for IE 9-11 and Edge 12.** You can use the [svg4everybody](https://github.com/jonathantneal/svg4everybody) polyfill:
+{{< highlight html >}}
+<script nomodule src="https://cdn.jsdelivr.net/npm/svg4everybody@2.1.9/dist/svg4everybody.min.js"></script>
+<script nomodule>svg4everybody();</script>
+{{< /highlight >}}
+
Found another issue with SVGs we should note? Please open an issue to share details.